Created
August 17, 2018 10:09
-
-
Save ShaileshPrajapati-BTC/b2f54f3196e73c6cab303ff2952fa53d 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 student = { | |
| firstname: 'Shailesh', | |
| lastname: 'Prajapati', | |
| country: 'India' | |
| }; | |
| // Object Destructuring | |
| const { firstname, lastname, country } = student; | |
| console.log(firstname, lastname, country); // Glad Chinda Nigeria |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment