Skip to content

Instantly share code, notes, and snippets.

@exdeniz
Created June 3, 2018 21:14
Show Gist options
  • Select an option

  • Save exdeniz/c3ee34306f2c50bbf2c9987a77f0d3b4 to your computer and use it in GitHub Desktop.

Select an option

Save exdeniz/c3ee34306f2c50bbf2c9987a77f0d3b4 to your computer and use it in GitHub Desktop.
const somevar = { a: 'foo', b: 'bar' }[switchval] || 'default';
//
let switchval = 3;
let somevar = ['a','b'][switchval] || 'default';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment