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