← Back to Question List
JavaScript Code Walkthrough #37
Plus Sign: Add or Concatenate
📄 Code
Read carefully — what does this print?1console.log(1 + 2 + "3");2console.log("1" + 2 + 3);
1console.log(1 + 2 + "3");2console.log("1" + 2 + 3);