Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save anthonycoffey/3bf66d1d5b3d51bf169b645070bf3e39 to your computer and use it in GitHub Desktop.
Save anthonycoffey/3bf66d1d5b3d51bf169b645070bf3e39 to your computer and use it in GitHub Desktop.
JavaScript Object Destructuring Example 1
var user = { name: 'Bill', age: 31, city: 'Dallas', state: 'TX' }
// object destructuring
var {city, state} = user;
console.log(city, state); // "Dallas", "TX"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment