Q. What is the result of the following?
Code:
console.log(typeof NaN);
β
Correct Answer: (B)
number
Explanation: NaN stands for Not-a-Number but its type is 'number'.