Skip to content

Instantly share code, notes, and snippets.

@u01jmg3
Created November 22, 2016 11:09
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save u01jmg3/ea38e4e8930b552e6a928d11436ef985 to your computer and use it in GitHub Desktop.
Save u01jmg3/ea38e4e8930b552e6a928d11436ef985 to your computer and use it in GitHub Desktop.
JavaScript equivalent of PHP's `is_numeric()`
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