Skip to content

Instantly share code, notes, and snippets.

@ferdiemmen
Created December 13, 2017 08:52
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 ferdiemmen/4da598b46e2b934972b257cac39c5a13 to your computer and use it in GitHub Desktop.
Save ferdiemmen/4da598b46e2b934972b257cac39c5a13 to your computer and use it in GitHub Desktop.
Deconstruction array items
## Deconstruction array items
const myArray = ['apple', 'nut', 'mies'];
const [apple] = myArray;
console.log(apple);
'apple'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment