Hi, complete newbie question - i've been reading a...
# getting-started
j
Hi, complete newbie question - i've been reading about null safety and I can't find any examples of checking for null without creating a variable For example, i'd like to do
Copy code
kotlin
val obj = Object()
if (obj.property != null) {
    ...
}