CJCoding With Joseph
← Back to Question List
JavaScript Code Walkthrough #13

Plus Means Add or Concatenate

easyOperators

📄 Code

Read carefully — what does this print?
1let a = 1;
2let b = 2;
3console.log(a + b + " apples");
4console.log("apples " + a + b);

🎯 Your Answer