Skip to content

Instantly share code, notes, and snippets.

@jonathanmarvens
Created November 12, 2013 07:33
Show Gist options
  • Save jonathanmarvens/7427005 to your computer and use it in GitHub Desktop.
Save jonathanmarvens/7427005 to your computer and use it in GitHub Desktop.
function isNumeric(value) {
return ((! isNaN(parseFloat(value))) && isFinite(value));
}
function isNumeric(a){return!isNaN(parseFloat(a))&&isFinite(a)}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment