Skip to content

Instantly share code, notes, and snippets.

@rwaldron
Created September 14, 2010 21:27
Show Gist options
  • Select an option

  • Save rwaldron/579805 to your computer and use it in GitHub Desktop.

Select an option

Save rwaldron/579805 to your computer and use it in GitHub Desktop.
// Given
var a = true, b='b', c='c';
(a?b:c)
// via @cowboy
[c,b][1-!a]
// via @rwaldron
[c,b][+a]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment