Skip to content

Instantly share code, notes, and snippets.

@newbornfrontender
Created January 18, 2019 06:48
Show Gist options
  • Save newbornfrontender/c13f832306517e68ee1be89fd481ba1e to your computer and use it in GitHub Desktop.
Save newbornfrontender/c13f832306517e68ee1be89fd481ba1e to your computer and use it in GitHub Desktop.
Destructuring. Two more quick tips for arrays
const [,,,, five] = [1, 2, 3, 4, 5, 6, 7];
console.log(`Selected: ${five}`);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment