Created
November 30, 2013 18:40
-
-
Save nola/7722789 to your computer and use it in GitHub Desktop.
short hand if statement.
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 age = 19; | |
| if(age >= 18){ | |
| var status = "adult"; | |
| }else{ | |
| var status = "minor"; | |
| } | |
| //short hand version | |
| var status = (age >= 18) ? "adult" : "minor"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment