Sleepzy@feddit.it to Programmer Humor@lemmy.ml · 4 days agoElvisfeddit.itimagemessage-square33fedilinkarrow-up1149arrow-down18
arrow-up1141arrow-down1imageElvisfeddit.itSleepzy@feddit.it to Programmer Humor@lemmy.ml · 4 days agomessage-square33fedilink
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.