Skip to content

Instantly share code, notes, and snippets.

@Noitidart
Created October 21, 2018 19:26
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 Noitidart/eba4f1571db8e278311fc077e25edc2e to your computer and use it in GitHub Desktop.
Save Noitidart/eba4f1571db8e278311fc077e25edc2e to your computer and use it in GitHub Desktop.
// style 1
const blah = A ? B : C ? D : E ? F : G;
// style 2
const blah = A
? B
: C
? D
: E
? F
: G;
// style 3
const blah = A ? B
: C ? D
: E ? F
: G;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment