Sleepzy@feddit.it to Programmer Humor · 2 months agoElvisfeddit.itimagemessage-square35fedilinkarrow-up1161arrow-down111
arrow-up1150arrow-down1imageElvisfeddit.itSleepzy@feddit.it to Programmer Humor · 2 months agomessage-square35fedilink
minus-squaredev_nulllinkfedilinkarrow-up3·edit-22 months agoIt’s a shorthand for writing this: variable = if (input != null) input else default This is equivalent: variable = input ?: default The answers confusing it with the ternary operator are wrong.
It’s a shorthand for writing this:
variable = if (input != null) input else default
This is equivalent:
variable = input ?: default
The answers confusing it with the ternary operator are wrong.