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); })();
1 2 3 4
2 3 4 1
2 4 3 1
4 3 2 1
Correct Answer : C
var a = Math.max(); var b = Math.min(); console.log(a); console.log(b);
console.log(typeof(NaN));
console.log(typeof typeof 5);