Skip to content

Instantly share code, notes, and snippets.

@dphoebus
Created June 8, 2016 17:25
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 dphoebus/66046e271489a72594b18d7f63ab83c3 to your computer and use it in GitHub Desktop.
Save dphoebus/66046e271489a72594b18d7f63ab83c3 to your computer and use it in GitHub Desktop.
JavaScript Quick Hitters
if(fruit === 'apple' || fruit === 'banana' || fruit === 'chikoo'){
doMagic();
}
// can be turned into this:
if({apple:1,banana:1,chikoo:1}[fruit]){
doMagic();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment