Created
July 30, 2018 23:55
-
-
Save gladchinda/7de5be4c0dc6ee524d4e8db4cc2e8052 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
| // OLD METHOD | |
| const name = country.name; | |
| const region = country.region || 'the world'; | |
| const code2 = country.codes.cca2; | |
| const dialcode = country.codes.dialcode; | |
| const cities = country.cities; | |
| // ES6 DESTRUCTURING | |
| const { | |
| name, | |
| region = 'the world', | |
| codes: { cca2: code2, dialcode }, | |
| cities | |
| } = country; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment