Sleepzy@feddit.it to Programmer Humor@lemmy.ml · 3 months agoElvisfeddit.itexternal-linkmessage-square35fedilinkarrow-up1160arrow-down111
arrow-up1149arrow-down1external-linkElvisfeddit.itSleepzy@feddit.it to Programmer Humor@lemmy.ml · 3 months agomessage-square35fedilink
minus-squaredev_null@lemmy.mllinkfedilinkarrow-up3·edit-23 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.