Skip to content

Instantly share code, notes, and snippets.

@N-Porsh
Last active December 26, 2015 23:49
Show Gist options
  • Select an option

  • Save N-Porsh/7232908 to your computer and use it in GitHub Desktop.

Select an option

Save N-Porsh/7232908 to your computer and use it in GitHub Desktop.
JavaScript: check if number
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