DEV Community

Discussion on: I Don't Know Javascript Coercion, Do You?

Collapse
 
thepeoplesbourgeois profile image
Josh • Edited

It gets worse!

4 + "4"
// "44"

4 +"4"
// 8
Collapse
 
codenutt profile image
Jared

Mother of god lol why??

Collapse
 
pranjalagnihot8 profile image
Pranjal Agnihotri {..❤️}

Using "+" before a String converts it to Number in JavaScript

Collapse
 
codenutt profile image
Jared

Ridiculous