Skip to content

Instantly share code, notes, and snippets.

@SimonVanherweghe
Created May 12, 2017 11:13
Show Gist options
  • Save SimonVanherweghe/1cb3dee7f969b8402cdd4ad5bf008012 to your computer and use it in GitHub Desktop.
Save SimonVanherweghe/1cb3dee7f969b8402cdd4ad5bf008012 to your computer and use it in GitHub Desktop.
Array destructuring as object
const arr = [`a`, `b`, `c`];
const {0: first} = arr;
console.log(first);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment