Correct Answer : C
Realated Questions
What will be the output of the following code snippet?
(function(){ setTimeout(()=> console.log(1),2000); console.log(2); setTimeout(()=> console.log(3),0); console.log(4); })();
What will be the output of the following code snippet?
var a = Math.max(); var b = Math.min(); console.log(a); console.log(b);
What will be the output of the following code snippet?
console.log(typeof(NaN));