Skip to content

Instantly share code, notes, and snippets.

@tucq88
Created April 25, 2016 10:37
Show Gist options
  • Select an option

  • Save tucq88/cf2063cb1639663b959bf7a57a728b5f to your computer and use it in GitHub Desktop.

Select an option

Save tucq88/cf2063cb1639663b959bf7a57a728b5f to your computer and use it in GitHub Desktop.
Better ternary
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