Skip to content

Instantly share code, notes, and snippets.

@fforres
Last active December 10, 2016 19:17
Show Gist options
  • Save fforres/cf0786b9507135be84a6cb57a0a19a78 to your computer and use it in GitHub Desktop.
Save fforres/cf0786b9507135be84a6cb57a0a19a78 to your computer and use it in GitHub Desktop.
function Dog(name) {
this.name = name;
}
Dog.bark = function() {
console.log("Guau… from the Dog function")
}
Dog.prototype.actuallyBark = function() {
console.log("Guau!")
}
var bailey = new Dog("Bailey");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment