Question #2078

What is the output of the following JavaScript code?<br>var x = 'ITI';<br>var y = 'GOVT';<br>var o = y concat(x)<br>document.write(o);

A.
ITI GOVT
B.
ITIGOVT
C.
GOVTITI
D.
GOVT ITI
Explanation

No explanation provided.