Sleepless One@lemmy.ml to Programmer Humor@lemmy.mlEnglish · 2 months agoThe JavaScript type coercion algorithmlemmy.mlimagemessage-square46linkfedilinkarrow-up1124file-textcross-posted to: programmer_humor@programming.dev
arrow-up1124imageThe JavaScript type coercion algorithmlemmy.mlSleepless One@lemmy.ml to Programmer Humor@lemmy.mlEnglish · 2 months agomessage-square46linkfedilinkfile-textcross-posted to: programmer_humor@programming.dev
minus-squareMidnitte@beehaw.orglinkfedilinkEnglisharrow-up8·edit-22 months ago3 - 1 // -> 2 3 + 1 // -> 4 '3' - 1 // -> 2 '3' + 1 // -> '31'
3 - 1 // -> 2
3 + 1 // -> 4
'3' - 1 // -> 2
'3' + 1 // -> '31'