Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save aswebdev/b0138dbd15fd2cca5aac to your computer and use it in GitHub Desktop.
Save aswebdev/b0138dbd15fd2cca5aac to your computer and use it in GitHub Desktop.
JavaScript integer validation function
function isNumber(n) {
// Determine if numeric (whole number or float)
return !isNaN(parseFloat(n)) && isFinite(n);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment