cantstopthesignal@sh.itjust.works to Programmer Humor@lemmy.ml · 1 year agoThe code was very janky, but it workedi.imgflip.comimagemessage-square10fedilinkarrow-up15arrow-down10
arrow-up15arrow-down1imageThe code was very janky, but it workedi.imgflip.comcantstopthesignal@sh.itjust.works to Programmer Humor@lemmy.ml · 1 year agomessage-square10fedilink
minus-squaremarcos@lemmy.worldlinkfedilinkarrow-up1·1 year ago(+x) % 2 == 0 If you forget for a second it’s Javascript, the language will turn back and bite you.
minus-squareFiskFisk33@startrek.websitelinkfedilinkarrow-up1·1 year agoI am not good friends with js, what did I miss?
minus-squaremarcos@lemmy.worldlinkfedilinkarrow-up1·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-squarecarpelbridgesyndrome@sh.itjust.workslinkfedilinkEnglisharrow-up1·1 year agoNot a JS dev either but ===. Not really sure what the (+x) is about
If you forget for a second it’s Javascript, the language will turn back and bite you.
I am not good friends with js, what did I miss?
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.
Not a JS dev either but
===
.Not really sure what the
(+x)
is about