Skip to content

Instantly share code, notes, and snippets.

@shigemk2
Created March 3, 2015 10:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shigemk2/e8a818a2beeb482d3eb4 to your computer and use it in GitHub Desktop.
Save shigemk2/e8a818a2beeb482d3eb4 to your computer and use it in GitHub Desktop.
var CheckNum = 1234;
console.log(CheckNum % 2);
console.log(/^-?[0-9]+\.[0-9]+$/.test(CheckNum));
console.log(CheckNum.match(/^-?[0-9]+\.[0-9]+$/)); // error
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment