What will be the output of the following code snippet?
console.log(typeof(NaN));
Number
Object
String
None of the above
Correct Answer : A
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); }
Which of the following one is the property of the primary expression:
Which one of the following is used for calling a function or a method in JavaScript: