Skip to content

Instantly share code, notes, and snippets.

@codermarcos
Created November 9, 2018 17:13
Show Gist options
  • Save codermarcos/dab933178ab9e06e7e7bbc514dd83f1e to your computer and use it in GitHub Desktop.
Save codermarcos/dab933178ab9e06e7e7bbc514dd83f1e to your computer and use it in GitHub Desktop.
Number.isNaN no Javascript
Number.isNaN({}); // false
Number.isNaN('abc'); // false
Number.isNaN(undefined); // false
Number.isNaN(NaN); // true
Number.isNaN(0/0); // true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment