Skip to content

Instantly share code, notes, and snippets.

@woliveiras
Created January 11, 2017 16:02
Show Gist options
  • Save woliveiras/f6dd5aca22069559ed01872b09e611d1 to your computer and use it in GitHub Desktop.
Save woliveiras/f6dd5aca22069559ed01872b09e611d1 to your computer and use it in GitHub Desktop.
let a;
let b;
let myArray = [1, 2, 3, 4, 5, 6];
[a, b] = myArray;
console.log(a); // 1
console.log(b); // 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment