Created
February 28, 2018 12:49
-
-
Save SaschaHeyer/0e5e9c40b094000b9bbd2bb8f004c9a7 to your computer and use it in GitHub Desktop.
destructuring
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 beer = { | |
| name: 'Bitburger', | |
| price: 1.5, | |
| type: 'pils', | |
| }; | |
| const { name, type } = beer; | |
| console.log(name, type); | |
| // output: Bitburger pils |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment