Sleepzy to Programmer Humor@lemmy.ml · 1 month agoElvisimagemessage-square35fedilinkarrow-up1161arrow-down110
arrow-up1151arrow-down1imageElvisSleepzy to Programmer Humor@lemmy.ml · 1 month agomessage-square35fedilink
minus-squaredev_null@lemmy.mllinkfedilinkarrow-up3·edit-228 days 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.