Skip to content

Instantly share code, notes, and snippets.

@ramazankanbur
Created May 13, 2020 20:40
Show Gist options
  • Save ramazankanbur/2dc9e7e68ebd25832114bc7079c8f9b5 to your computer and use it in GitHub Desktop.
Save ramazankanbur/2dc9e7e68ebd25832114bc7079c8f9b5 to your computer and use it in GitHub Desktop.
//ES5
var list = [1, 2, 3];
var a = list[0],
b = list[2];
console.log(a, b);
//ES6
var [a, , b] = list;
console.log(a, b);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment