Q. What will be the output of: console.log(typeof null);
β
Correct Answer: (C)
object
Explanation: In JavaScript, typeof null returns 'object' due to a legacy bug.