Skip to content

Instantly share code, notes, and snippets.

@gladkih
Created March 12, 2015 08:50
Show Gist options
  • Save gladkih/e0c68b0910b2a0c71fe5 to your computer and use it in GitHub Desktop.
Save gladkih/e0c68b0910b2a0c71fe5 to your computer and use it in GitHub Desktop.
Check variable for NaN.
var realIsNaN = function(value) {
return typeof value === 'number' && isNaN(value);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment