Skip to content

Instantly share code, notes, and snippets.

@theswedishdev
Last active February 18, 2017 18:01
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 theswedishdev/3167ab515da0b90f0702bedaca9a9b46 to your computer and use it in GitHub Desktop.
Save theswedishdev/3167ab515da0b90f0702bedaca9a9b46 to your computer and use it in GitHub Desktop.
JavaScript Number methods
Number.prototype.isInteger = function() {
return this % 1 === 0;
};
Number.prototype.isFloat = function() {
return this % 1 !== 0;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment