@cantstopthesignal@sh.itjust.works to Programmer Humor@lemmy.ml • 1 year agoThe code was very janky, but it workedi.imgflip.comimagemessage-square42fedilinkarrow-up1484arrow-down19
arrow-up1475arrow-down1imageThe code was very janky, but it workedi.imgflip.com@cantstopthesignal@sh.itjust.works to Programmer Humor@lemmy.ml • 1 year agomessage-square42fedilink
minus-square@marcos@lemmy.worldlinkfedilink7•1 year agoThis evaluates to NaN for some reason: '10' % 0 Since JS doesn’t really differentiate strings from numbers, except on the places it does, it makes sense to make sure you are working with numbers.
minus-square@FiskFisk33@startrek.websitelinkfedilink2•edit-21 year agoOh right that. I guess I was visualizing a scenario where you already checked for it being a number, such as a Number.isInteger(x) also, that suprises me a lot, you’d think this is one of the places where it treats stuff as numbers
This evaluates to NaN for some reason:
Since JS doesn’t really differentiate strings from numbers, except on the places it does, it makes sense to make sure you are working with numbers.
Oh right that. I guess I was visualizing a scenario where you already checked for it being a number, such as a Number.isInteger(x)
also, that suprises me a lot, you’d think this is one of the places where it treats stuff as numbers