Skip to content

Instantly share code, notes, and snippets.

@Neophen
Created August 1, 2019 10:54
Show Gist options
  • Save Neophen/d1b186fecd9ea939146a1d7812a7278c to your computer and use it in GitHub Desktop.
Save Neophen/d1b186fecd9ea939146a1d7812a7278c to your computer and use it in GitHub Desktop.
NaN ( not a number )
// NaN (not a number)
let name = "Mykolas";
let something = name / 4;
console.log(typeof something); // number
something; // NaN
console.log(Number.isNaN(something)); // true
console.log(Number.isNaN(name)); // false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment