Skip to content

Instantly share code, notes, and snippets.

@woliveiras
Last active January 11, 2017 16:01
Show Gist options
  • Save woliveiras/8ebb57528fff4a98c9f596b444404102 to your computer and use it in GitHub Desktop.
Save woliveiras/8ebb57528fff4a98c9f596b444404102 to your computer and use it in GitHub Desktop.
const myArray = ["one", "two", "three", "four", "five"];
const [one, two, three] = myArray;
console.log(one); // "one"
console.log(two); // "two"
console.log(three); // "three"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment