Skip to content

Instantly share code, notes, and snippets.

@sugarshin
Created April 8, 2014 12:44
Show Gist options
  • Save sugarshin/10118517 to your computer and use it in GitHub Desktop.
Save sugarshin/10118517 to your computer and use it in GitHub Desktop.
isNumber
function isNumber(n) {
if ( typeof(n) != 'number' && typeof(n) != 'string' ) {
return false;
} else {
return ( n == parseFloat(n) && isFinite(n) );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment