Skip to content

Instantly share code, notes, and snippets.

@a1exlism
Last active March 5, 2018 01:55
Show Gist options
  • Save a1exlism/525aacd026c3b0acb3c5587b5c41d805 to your computer and use it in GitHub Desktop.
Save a1exlism/525aacd026c3b0acb3c5587b5c41d805 to your computer and use it in GitHub Desktop.
function isInt(i) {
return (typeof i == "number") && !(i % 1) && !isNaN(i);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment