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 ▸

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


How to sum every number in an array of numbers.


Suppose that you have a <p> element with an id of 'id1'. Use javascript to set the inner html of this element to 'hello!'


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?