Skip to content

Instantly share code, notes, and snippets.

@ivan-demchenko
Created February 10, 2014 08:11
Show Gist options
  • Save ivan-demchenko/8912130 to your computer and use it in GitHub Desktop.
Save ivan-demchenko/8912130 to your computer and use it in GitHub Desktop.
Test the value whether it is a number.
function isNumber(value) {
return typeof value === 'number' && isFinite(value);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment