Skip to content

Instantly share code, notes, and snippets.

@nguyenbathanh
Last active February 23, 2017 10:45
Show Gist options
  • Select an option

  • Save nguyenbathanh/673319c04df6b615d557bec503f54ca2 to your computer and use it in GitHub Desktop.

Select an option

Save nguyenbathanh/673319c04df6b615d557bec503f54ca2 to your computer and use it in GitHub Desktop.
Javascript check input is integer or not.
function isInt(value) {
return !isNaN(value) && (function(x) { return (x | 0) === x; })(parseFloat(value))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment