Skip to content

Instantly share code, notes, and snippets.

@kwokhou
Last active September 21, 2016 07:05
Show Gist options
  • Save kwokhou/5971995 to your computer and use it in GitHub Desktop.
Save kwokhou/5971995 to your computer and use it in GitHub Desktop.
JavaScript Is Number check, alternative to http://api.jquery.com/jQuery.isNumeric/
// Copied from http://stackoverflow.com/a/1830844
function isNumber(n) {
return !isNaN(parseFloat(n)) && isFinite(n);
}
@FQ400
Copy link

FQ400 commented Jul 1, 2016

ìsNumber("1234") // returns true

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