@[email protected] to Science [email protected]English • 6 days agoif statement == falsei.imgflip.comimagemessage-square39fedilinkarrow-up1242arrow-down118
arrow-up1224arrow-down1imageif statement == falsei.imgflip.com@[email protected] to Science [email protected]English • 6 days agomessage-square39fedilink
minus-square@[email protected]linkfedilinkEnglish2•1 day agodoes javascript not allow you to interpret integers as booleans in a conditions directly? seems it’d be simpler to just do math.round(math.random()), which should still get you true (1) or false (0) in equal likelihood. or am i missing something?
minus-squareAdmiral PatricklinkfedilinkEnglish1•edit-217 hours agoIt’ll give you 1 ~= true or 0 ~= undefined, but I typically use Typescript which prefers actual booleans to boolean-ish
minus-square@[email protected]linkfedilinkEnglish1•11 hours agohuh. interesting. i wonder what number it’s actually storing for false then?
does javascript not allow you to interpret integers as booleans in a conditions directly? seems it’d be simpler to just do math.round(math.random()), which should still get you true (1) or false (0) in equal likelihood. or am i missing something?
It’ll give you 1 ~= true or 0 ~= undefined, but I typically use Typescript which prefers actual booleans to boolean-ish
huh. interesting. i wonder what number it’s actually storing for false then?