Q. What will this code print?
Code:
console.log(typeof undefined === typeof NULL);
β
Correct Answer: (B)
false
Explanation: NULL is not defined (uppercase), so the code throws a ReferenceError.