Sleepless One@lemmy.ml to Programmer Humor@lemmy.mlEnglish · 1 month agoThe JavaScript type coercion algorithmlemmy.mlimagemessage-square20fedilinkarrow-up190arrow-down11file-text
arrow-up189arrow-down1imageThe JavaScript type coercion algorithmlemmy.mlSleepless One@lemmy.ml to Programmer Humor@lemmy.mlEnglish · 1 month agomessage-square20fedilinkfile-text
minus-squareMidnitte@beehaw.orglinkfedilinkEnglisharrow-up7·edit-21 month ago3 - 1 // -> 2 3 + 1 // -> 4 '3' - 1 // -> 2 '3' + 1 // -> '31'
3 - 1 // -> 2
3 + 1 // -> 4
'3' - 1 // -> 2
'3' + 1 // -> '31'