Skip to content

Instantly share code, notes, and snippets.

@Louiefigz
Created December 12, 2016 18:03
Show Gist options
  • Save Louiefigz/daea73a5d7f3a46428a87a2f3f4e8ea0 to your computer and use it in GitHub Desktop.
Save Louiefigz/daea73a5d7f3a46428a87a2f3f4e8ea0 to your computer and use it in GitHub Desktop.
function Sandwich(bread, ingredients, name) {
this.bread = bread;
this.ingredients = ingredients;
this.name = name;
}
function serve() {
console.log("here's your " + this.name + ", enjoy!");
}
var gc = new Sandwich("white", ["cheese"], "Grilled Cheese");
var pbj = new Sandwich("wheat", ["peanut butter", "raspberry jam"], "Peanut Butter & Jelly");
serve.call(gc);
serve.call(pbj);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment