why after checking if the property is not null it ...
# getting-started
m
why after checking if the property is not null it still doesn’t work like that?
Copy code
if(string != null) {
    string.length()
else {
  __do_something_else__
}