Skip to content

Instantly share code, notes, and snippets.

@uhhuhyeah
Created October 22, 2012 04:49
Show Gist options
  • Save uhhuhyeah/3929692 to your computer and use it in GitHub Desktop.
Save uhhuhyeah/3929692 to your computer and use it in GitHub Desktop.
Fancy JavaScript
if ( foo == "bar" || foo == "foobar" || foo == "foo" ) {
//...
}
// can be written as
if ( foo in { bar:1, foobar:1, foo:1 } ) {
//...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment