Skip to content

Instantly share code, notes, and snippets.

@0GiS0
Created February 3, 2019 17:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 0GiS0/7163b6ac0f91dfc39f2757bc8c417b8a to your computer and use it in GitHub Desktop.
Save 0GiS0/7163b6ac0f91dfc39f2757bc8c417b8a to your computer and use it in GitHub Desktop.
var tvShow = {
title: 'El Embarcadero',
seasons: 2,
watched: true
};
var { title, watched } = tvShow;
console.log(title); //El embarcadero
console.log(watched); //true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment