Skip to content

Instantly share code, notes, and snippets.

@8maki
Created February 27, 2012 11:08
Show Gist options
  • Save 8maki/1923095 to your computer and use it in GitHub Desktop.
Save 8maki/1923095 to your computer and use it in GitHub Desktop.
isNumber
function isNumber(str) {
return !isNaN(+str)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment