Created
November 21, 2021 22:32
-
-
Save Octagon-simon/1c73ec87e5fe3a404c1a3decd07e1f3d 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 x = 20; | |
| if( x == 0 ) { | |
| (console.log("x is 0")); | |
| }else if( x == 10 ) { | |
| (console.log("x is 10")); | |
| }else if( x == 20 ) { | |
| (console.log("x is 20")); | |
| }else { | |
| (console.log("x is unknown")) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment