Set 13 Practice Mode

Set Completed!

0 / 5

0%

Q2075
Permalink
How will javascript treat a number, when it is enclosed with double or single quotes?
Q2076
Permalink
What will be the output for the following JavaScript code?<br>var x = 13 +'03'<br>Alert(x);
Q2077
Permalink
What will be the output, if the javascript code is executed<br>var x = 1324;<br>var y = new Number(1324);<br>if( x === y)<br>alert('Yes');<br>else<br>alert('No')
Q2078
Permalink
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);
Q2079
Permalink
What is the output of the following javascript code?<br>var name = 'Kanya Kumari' ;<br>var x = name.substr(8,2);<br>document.write(x);