<https://kotlinlang.org/docs/reference/idioms.html...
# getting-started
a
https://kotlinlang.org/docs/reference/idioms.html
Copy code
val data = ...

data?.let {
    ... // execute this block if not null
}
🙃 4