Q. Which one of the following is correct output for the following given JavaScript code:
Code:
string X= "Good"; string Y="Evening"; alert(X+Y);
β
Correct Answer: (C)
GooodEvening
string X= "Good"; string Y="Evening"; alert(X+Y);
You must be Logged in to update hint/solution