Skip to content

Instantly share code, notes, and snippets.

@seriiserii825
Created June 22, 2017 23:00
Show Gist options
  • Save seriiserii825/e957fd0dc07fac998d172ba797098e6c to your computer and use it in GitHub Desktop.
Save seriiserii825/e957fd0dc07fac998d172ba797098e6c to your computer and use it in GitHub Desktop.
isnumeric
function isNumeric(n) {
return !isNaN(parseFloat(n)) && isFinite(n);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment