if I have something like: `val t = x?.y?.z ?: “”` ...
# getting-started
e
if I have something like:
val t = x?.y?.z ?: “”
How do I make sure
t
is not
null
if
z
is
null
? Can I do that without having another if-statement?