Sleepzy@feddit.it to Programmer Humor@lemmy.ml · 1 year agoElvisfeddit.itexternal-linkmessage-square35fedilinkarrow-up1164arrow-down111
arrow-up1153arrow-down1external-linkElvisfeddit.itSleepzy@feddit.it to Programmer Humor@lemmy.ml · 1 year agomessage-square35fedilink
minus-squaredev_null@lemmy.mllinkfedilinkarrow-up3·edit-211 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 defaultThis is equivalent:
variable = input ?: defaultThe answers confusing it with the ternary operator are wrong.