Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@xhoskin
Last active October 16, 2015 14:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xhoskin/8588707f1b1d47972c2c to your computer and use it in GitHub Desktop.
Save xhoskin/8588707f1b1d47972c2c to your computer and use it in GitHub Desktop.
Короткий способ писать case
s >= 90 ? "A" : s >= 80 ? "B" : s >= 70 ? "C" : s >= 60 ? "D" : "F"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment