Created
October 20, 2021 03:15
-
-
Save Octagon-simon/f44da6e37743d774aea8e1f0c641bebe to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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