Skip to content

Instantly share code, notes, and snippets.

@kbk0125
Created April 2, 2018 03:36
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 kbk0125/3e7b4f8d04054224d8131701a7241605 to your computer and use it in GitHub Desktop.
Save kbk0125/3e7b4f8d04054224d8131701a7241605 to your computer and use it in GitHub Desktop.
let cookout = {
drink:"soda",
grill: function(meal) {
console.log("I am going to fire up the grill to cook " + meal + " with " +this.drink +" to drink!");
}
}
let fancyDinner = {
drink: "wine",
useOven: function() {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment