Correct Answer : A
Realated Questions
What will be the output of the following code snippet?
console.log(typeof(NaN));
What will be the output of the following code snippet?
console.log(typeof typeof 5);
Which of the following is the correct output for the following JavaScript code?
const x = 8; if(x>9) { console.log(9); } else { console.log(x); }