Skip to content

Instantly share code, notes, and snippets.

@tonysaffo
Created October 15, 2018 15:46
Show Gist options
  • Save tonysaffo/2f218e24967bbaf5c2b4078979477cce to your computer and use it in GitHub Desktop.
Save tonysaffo/2f218e24967bbaf5c2b4078979477cce to your computer and use it in GitHub Desktop.
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