showing results for - "4 7 1 the string operator 2b c2 b6"
Valeria
27 Oct 2017
1/*Let's compare + used with numbers to + used with strings.*/
2
3console.log(1 + 1);
4console.log("1" + "1");
5
6//2
7//11