What does the following code do and why? console.log(1+"2")

The code outputs the text "12" to the console, demonstrating a concatenation of a string and an integer.

TM

Related Javascript Mentoring answers

All answers ▸

If I do var a=3 and var b=4 and then do var c=a+b it tells me the answer is 34. Why?


What is the difference between let and var when declaring variables in javascript?


How would you change the background colour of a div with the id "colourme" to purple?


What is the difference between global and local variables?