Skip to content

Instantly share code, notes, and snippets.

@Octagon-simon
Created October 20, 2021 02:59
Show Gist options
  • Select an option

  • Save Octagon-simon/747171c4ab3897ffcf835e4941cffaaa to your computer and use it in GitHub Desktop.

Select an option

Save Octagon-simon/747171c4ab3897ffcf835e4941cffaaa to your computer and use it in GitHub Desktop.
var num = 200;
if (num < 100) {
console.log('Number less than 100');
}else if(num > 100) {
console.log('Number is greater than 100');
}else {
console.log('Number is not an Integer');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment