Skip to content

Instantly share code, notes, and snippets.

@mtinra
Created November 17, 2016 03:16
Show Gist options
  • Save mtinra/968326bcead6ac792628b10e97b967ad to your computer and use it in GitHub Desktop.
Save mtinra/968326bcead6ac792628b10e97b967ad to your computer and use it in GitHub Desktop.
Check input is number angularjs
//http://stackoverflow.com/a/31558451/4364777
if ( !isNaN(inputVar) && angular.isNumber(+inputVar)) {
//do somthing...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment