Skip to content

Instantly share code, notes, and snippets.

@shahab570
Created January 2, 2021 18:34
Show Gist options
  • Save shahab570/602aac9ae4393660fff0a756daba3a1c to your computer and use it in GitHub Desktop.
Save shahab570/602aac9ae4393660fff0a756daba3a1c to your computer and use it in GitHub Desktop.
let x, y, z;
({ x, y, z } = { x: 100, y: 200, z: 300 });
console.log(x); //100
console.log(y); //200
console.log(z); //300
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment