Skip to content

Instantly share code, notes, and snippets.

@Violet-Bora-Lee
Created March 4, 2019 12:27
Show Gist options
  • Save Violet-Bora-Lee/917169d29338dd378e37e4a142dda313 to your computer and use it in GitHub Desktop.
Save Violet-Bora-Lee/917169d29338dd378e37e4a142dda313 to your computer and use it in GitHub Desktop.
const developer = {
firstName: 'Nathan',
lastName: 'Sebhastian',
developer: true,
age: 25,
}
//destructure developer object
const { firstName, lastName } = developer;
console.log(firstName); // returns 'Nathan'
console.log(lastName); // returns 'Sebhastian'
console.log(developer); // returns the object
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment