Skip to content

Instantly share code, notes, and snippets.

@gsans
Created March 1, 2015 03:45
Show Gist options
  • Save gsans/8a8ae9e4b2d7b966e796 to your computer and use it in GitHub Desktop.
Save gsans/8a8ae9e4b2d7b966e796 to your computer and use it in GitHub Desktop.
let [one, two] = [1, 2];
let {a:three, b:four} = {a: 3, b: 4};
console.log(one, two, three, four); // 1 2 3 4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment