Created
February 20, 2019 15:41
-
-
Save alvaaz/3e44e03dddfbd40526c6a1648e3ae96c to your computer and use it in GitHub Desktop.
Destructuring and enhacement
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 banda = 'Metallica' | |
| const genero = 'Heavy Metal' | |
| const canciones = ['Master of Puppets', 'Enter Sandman', 'Seek & Destroy'] | |
| //Object Literal Enhacement | |
| const metallica = {banda, genero, canciones}; | |
| //Object Destructuring | |
| const {banda, genero, canciones} = metallica |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment