Skip to content

Instantly share code, notes, and snippets.

@BroFox86
Last active May 28, 2024 18:30
Show Gist options
  • Save BroFox86/ab4ead60ec513bc2045284193bb2c42f to your computer and use it in GitHub Desktop.
Save BroFox86/ab4ead60ec513bc2045284193bb2c42f to your computer and use it in GitHub Desktop.
[isNumber] Check if value is number #jsTrick
function isNumber( x ) {
return !isNaN( parseFloat( x ) ) && isFinite( x );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment