Sleepzy@feddit.it to Programmer Humor@lemmy.ml · 3 days agoElvisfeddit.itimagemessage-square29fedilinkarrow-up1154arrow-down19
arrow-up1145arrow-down1imageElvisfeddit.itSleepzy@feddit.it to Programmer Humor@lemmy.ml · 3 days agomessage-square29fedilink
minus-squaredev_null@lemmy.mllinkfedilinkarrow-up2·edit-25 hours 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.