Skip to content

Instantly share code, notes, and snippets.

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 valentingavela/95e6cd7c1c16096bd1233b6f38c475c3 to your computer and use it in GitHub Desktop.
Save valentingavela/95e6cd7c1c16096bd1233b6f38c475c3 to your computer and use it in GitHub Desktop.
Javascript check if number is integer or float
function isInt(n){
return Number(n) === n && n % 1 === 0;
}
function isFloat(n){
return Number(n) === n && n % 1 !== 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment