(1)
What will be the output of the following JavaScript code?
var string1 = ”123”; var intvalue = 123; alert( string1 + intvalue );
Answer: 123123