JavaScript Quiz
Click to Start
1. What is the output of the following code?
console.log(typeof NaN)
"null"
"undefined"
"number"
"object"
2. Which of the following is NOT a JavaScript data type?
"String"
"Boolean"
"Float"
"Object"
3. What will this code return?
console.log(0 == false);
console.log(0 === false);
"true, true"
"true, false"
"false, true"
"false, false"
Your Score:
Restart Quiz