Answers for "4.7.1. The String Operator +¶"

0

4.7.1. The String Operator +¶

/*Let's compare + used with numbers to + used with strings.*/

console.log(1 + 1);
console.log("1" + "1");

//2
//11
Posted by: Guest on June-06-2021

Code answers related to "4.7.1. The String Operator +¶"

Code answers related to "Javascript"

Browse Popular Code Answers by Language