Sleepzy@feddit.it to Programmer Humor@lemmy.ml · 4 days agoElvisfeddit.itimagemessage-square35fedilinkarrow-up1158arrow-down18
arrow-up1150arrow-down1imageElvisfeddit.itSleepzy@feddit.it to Programmer Humor@lemmy.ml · 4 days agomessage-square35fedilink
minus-squaredev_null@lemmy.mllinkfedilinkarrow-up2·edit-21 day 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.