Skip to content

Instantly share code, notes, and snippets.

@matsko
Created March 13, 2014 20:18
Show Gist options
  • Save matsko/9536105 to your computer and use it in GitHub Desktop.
Save matsko/9536105 to your computer and use it in GitHub Desktop.
value == true
? 'a'
: 'b';
value == true ?
'a' :
'b';
value == true ? 'a' : 'b';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment