Skip to content

Instantly share code, notes, and snippets.

@0GiS0
Created February 3, 2019 17:48
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/572ecc57d3a369f50243a822fef2f46a to your computer and use it in GitHub Desktop.
Save 0GiS0/572ecc57d3a369f50243a822fef2f46a to your computer and use it in GitHub Desktop.
var tvShow = {
title: 'El Embarcadero',
seasons: 2,
watched: true
};
function watching({ title, seasons }) {
console.log(`I am watching ${title}. ${seasons} seasons of entertainment!`);
}
watching(tvShow);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment