Skip to content

Instantly share code, notes, and snippets.

@Sanchithasharma
Last active January 26, 2021 17:30
Show Gist options
  • Save Sanchithasharma/b50f54f34b605c21d254681021ea8709 to your computer and use it in GitHub Desktop.
Save Sanchithasharma/b50f54f34b605c21d254681021ea8709 to your computer and use it in GitHub Desktop.
Check if a variable is Number or not using isNan()
var numberOfpushUpsToday = 34;
if(!isNaN(numberOfpushUpsToday)){
console.log('It is a number')
}
else {
console.log('It is not a number')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment