Skip to content

Instantly share code, notes, and snippets.

@silentmatt
Created February 16, 2010 04:30
Show Gist options
  • Save silentmatt/305288 to your computer and use it in GitHub Desktop.
Save silentmatt/305288 to your computer and use it in GitHub Desktop.
Replaces isNaN function
var a = NaN;
isNaN(a); // true because a has the value NaN
isNaN = function(x) { return x < 5; };
isNaN(a); // false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment