Sleepless One@lemmy.ml to Programmer Humor@lemmy.mlEnglish · 14 days agoThe JavaScript type coercion algorithmlemmy.mlexternal-linkmessage-square45fedilinkarrow-up1120arrow-down12file-text
arrow-up1118arrow-down1external-linkThe JavaScript type coercion algorithmlemmy.mlSleepless One@lemmy.ml to Programmer Humor@lemmy.mlEnglish · 14 days agomessage-square45fedilinkfile-text
minus-squareMidnitte@beehaw.orglinkfedilinkEnglisharrow-up8arrow-down1·edit-214 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'