Skip to content

Instantly share code, notes, and snippets.

@katepapineni
Created July 14, 2020 14:30
Show Gist options
  • Save katepapineni/7077c4d802660e05e75b32f3df73f500 to your computer and use it in GitHub Desktop.
Save katepapineni/7077c4d802660e05e75b32f3df73f500 to your computer and use it in GitHub Desktop.
JavaScript Quiz 1: Typeof operator
// What is the output?
console.log(typeof NaN);
console.log(typeof Number);
@zaswant1
Copy link

NaN

@katepapineni
Copy link
Author

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