Skip to content

Instantly share code, notes, and snippets.

@cmoody
Last active March 31, 2016 20:13
Show Gist options
  • Save cmoody/2f8ed4a02490192a5a5d47d1589f785b to your computer and use it in GitHub Desktop.
Save cmoody/2f8ed4a02490192a5a5d47d1589f785b to your computer and use it in GitHub Desktop.
Array Destructuring
// Array destructure
let arr = [9, 8, 7, 6, 5, 4, 3, 2, 1];
let [a, b, ...numbers] = arr;
console.log(a); // returns 9
console.log(b); // returns 8
console.log(numbers); // returns [7, 6, 5, 4, 3, 2, 1];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment