Sleepless One@lemmy.ml to Programmer Humor@lemmy.mlEnglish · 27 days agoThe JavaScript type coercion algorithmimagemessage-square46fedilinkarrow-up1126arrow-down12file-text
arrow-up1124arrow-down1imageThe JavaScript type coercion algorithmSleepless One@lemmy.ml to Programmer Humor@lemmy.mlEnglish · 27 days agomessage-square46fedilinkfile-text
minus-squareMidnitte@beehaw.orglinkfedilinkEnglisharrow-up8arrow-down1·edit-227 days ago3 - 1 // -> 2 3 + 1 // -> 4 '3' - 1 // -> 2 '3' + 1 // -> '31'
3 - 1 // -> 2
3 + 1 // -> 4
'3' - 1 // -> 2
'3' + 1 // -> '31'