Skip to content

Instantly share code, notes, and snippets.

@alvaaz
Created February 20, 2019 15:41
Show Gist options
  • Select an option

  • Save alvaaz/3e44e03dddfbd40526c6a1648e3ae96c to your computer and use it in GitHub Desktop.

Select an option

Save alvaaz/3e44e03dddfbd40526c6a1648e3ae96c to your computer and use it in GitHub Desktop.
Destructuring and enhacement
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