Posts by felipe • 61 points
1 post
-
6
votes1
answer165
viewsQ: How does the "+" operator work in Javascript?
Recently I had seen on the website of MDN Web Docs that it was possible to convert a String in a Number even in the example below: let n1 = "10"; console.log(typeof n1); //=> string ("10") The…