Created
March 4, 2019 12:27
-
-
Save Violet-Bora-Lee/917169d29338dd378e37e4a142dda313 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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