Created
October 20, 2021 02:59
-
-
Save Octagon-simon/747171c4ab3897ffcf835e4941cffaaa 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; | |
| 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