Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save Octagon-simon/f44da6e37743d774aea8e1f0c641bebe to your computer and use it in GitHub Desktop.
var num = 200;
(num < 100) ? console.log('Number less than 100') :
(num > 100) ? console.log('Number is greater than 100') :
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