Sleepzy@feddit.it to Programmer Humor@lemmy.ml · 3 days agoElvisfeddit.itexternal-linkmessage-square29fedilinkarrow-up1155arrow-down18
arrow-up1147arrow-down1external-linkElvisfeddit.itSleepzy@feddit.it to Programmer Humor@lemmy.ml · 3 days agomessage-square29fedilink
minus-squaredev_null@lemmy.mllinkfedilinkarrow-up2·edit-28 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.