Sleepless One@lemmy.ml to Programmer Humor@lemmy.mlEnglish · 6 days agoThe JavaScript type coercion algorithmlemmy.mlimagemessage-square45fedilinkarrow-up1126arrow-down12file-textcross-posted to: [email protected]
arrow-up1124arrow-down1imageThe JavaScript type coercion algorithmlemmy.mlSleepless One@lemmy.ml to Programmer Humor@lemmy.mlEnglish · 6 days agomessage-square45fedilinkfile-textcross-posted to: [email protected]
minus-squareMidnitte@beehaw.orglinkfedilinkEnglisharrow-up8arrow-down1·edit-25 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'