Is there a shorthand for `if (value == null) value...
# getting-started
j
Is there a shorthand for
if (value == null) value = "Foo"
?
value = value ?: "Foo"
works, but does the
value = value
get optimized away?