Multiple Choice Question (MCQ)
Question:
What will be the output, if the javascript code is executed
var x = 1324;
var y = new Number(1324);
if( x === y)
alert('Yes');
else
alert('No')
A.
Infinity
B.
Error
C.
No
D.
Yes
Correct Answer: Yes