Created
July 14, 2020 14:30
-
-
Save katepapineni/7077c4d802660e05e75b32f3df73f500 to your computer and use it in GitHub Desktop.
JavaScript Quiz 1: Typeof operator
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// What is the output? | |
console.log(typeof NaN); | |
console.log(typeof Number); |
NaN => typeof Number
Number => typeof function used for casting a string to a number
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
NaN