Skip to content

Instantly share code, notes, and snippets.

@web20opensource
Last active August 29, 2015 14:19
Show Gist options
  • Save web20opensource/e76e87feb9b3dc939d68 to your computer and use it in GitHub Desktop.
Save web20opensource/e76e87feb9b3dc939d68 to your computer and use it in GitHub Desktop.
polyfill_Number.isNaN
/*check mdn Number.isNaN*/
/*mdn example*/
Number.isNaN = Number.isNaN || function(value) {
return typeof value === "number" && value !== value;
}
@web20opensource
Copy link
Author

mdn example

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment