Skip to content

Instantly share code, notes, and snippets.

@Sanchithasharma
Created January 26, 2021 17:06
Show Gist options
  • Save Sanchithasharma/a12cbf39f9a78447c01faabe3da53b23 to your computer and use it in GitHub Desktop.
Save Sanchithasharma/a12cbf39f9a78447c01faabe3da53b23 to your computer and use it in GitHub Desktop.
Check if variable is a number using typeof
var numberOfpushUpsToday = 34;
if(typeof numberOfpushUpsToday === 'number' ){
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