Q. Consider the following snippet code
Code:
var string1 = ”123”; var intvalue = 123; alert( string1 + intvalue );
β
Correct Answer: (C)
123123
var string1 = ”123”; var intvalue = 123; alert( string1 + intvalue );
You must be Logged in to update hint/solution