@jroid8@lemmy.world to Programmer Humor@lemmy.ml • 1 year agoknow the features of your languagelemmy.worldimagemessage-square145fedilinkarrow-up1646arrow-down124
arrow-up1622arrow-down1imageknow the features of your languagelemmy.world@jroid8@lemmy.world to Programmer Humor@lemmy.ml • 1 year agomessage-square145fedilink
minus-square@murtaza64@programming.devlinkfedilink3•edit-21 year agoYou don’t need the and right? Can’t it just be return a or b This doesn’t work if a is falsy non-null actually
minus-square@cerement@slrpnk.netlinkfedilink1•1 year agoit’s just return a and b or c is the closest Lua has to a ternary operator, but yes, for the above you could shorten it to return a or b (“or returns the first argument if true, otherwise second argument is returned”)
You don’t need the and right? Can’t it just be
return a or b
This doesn’t work if a is falsy non-null actually
it’s just
return a and b or c
is the closest Lua has to a ternary operator, but yes, for the above you could shorten it toreturn a or b
(“or
returns the first argument if true, otherwise second argument is returned”)