Skip to content

Instantly share code, notes, and snippets.

@himeshvats19
Created June 26, 2019 07:04
Show Gist options
  • Save himeshvats19/243164cd7833459546198506396feb13 to your computer and use it in GitHub Desktop.
Save himeshvats19/243164cd7833459546198506396feb13 to your computer and use it in GitHub Desktop.
let a = [10,20,30];
let [x, y, z] = a;
console.log(x); //10
console.log(y); //20
console.log(z); //30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment