Skip to content

Instantly share code, notes, and snippets.

@zhuzhuaicoding
Created October 31, 2012 03:38
Show Gist options
  • Select an option

  • Save zhuzhuaicoding/3984655 to your computer and use it in GitHub Desktop.

Select an option

Save zhuzhuaicoding/3984655 to your computer and use it in GitHub Desktop.
check is a number
var isnan = /^(NaN|-?Infinity)$/;
function isNumeric(num) {
return !isnan.test(+num);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment