Q. What will be the output of the following JavaScript code?
Code:console.log(typeof null);
β
Correct Answer: (C)
"object"
Explanation: In JavaScript, `typeof null` returns "object" due to a long-standing bug in the language. It is technically incorrect, but preserved for backward compatibility.