Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save olddustysocksunderthecouch/642d190947dcb461780e8abe3d3ff85f to your computer and use it in GitHub Desktop.
Save olddustysocksunderthecouch/642d190947dcb461780e8abe3d3ff85f to your computer and use it in GitHub Desktop.
const array = [1,2,3];
const [a, b] = array;
console.log(a); // logs: 1
console.log(b); // logs: 2
console.log(array); // logs: [1,2,3]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment