Q. What will the following return?
Code:
console.log(typeof null);
β
Correct Answer: (B)
object
Explanation: typeof null returns 'object' (a long-standing bug in JS).