Skip to content

Instantly share code, notes, and snippets.

@xeiter
Created January 23, 2016 11:07
Show Gist options
  • Save xeiter/8221f4966251d4bb4f94 to your computer and use it in GitHub Desktop.
Save xeiter/8221f4966251d4bb4f94 to your computer and use it in GitHub Desktop.
Check if variable is an integer in JavaScript
if ( my_variable !== parseInt(my_variable, 10) ) { alert("my_variable is an integer"); }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment