Created
April 25, 2016 10:37
-
-
Save tucq88/cf2063cb1639663b959bf7a57a728b5f to your computer and use it in GitHub Desktop.
Better ternary
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
| x = (y < 100) ? "dog" : | |
| (y < 150) ? "cat" : | |
| (y < 300) ? "bar" : "baz"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment