Skip to content

Instantly share code, notes, and snippets.

@ibolmo
Created July 18, 2016 17:06
Show Gist options
  • Save ibolmo/4cd51a9dc88f6cae22678db164087d91 to your computer and use it in GitHub Desktop.
Save ibolmo/4cd51a9dc88f6cae22678db164087d91 to your computer and use it in GitHub Desktop.
var Animal = function(name){
this.name = name;
};
Animal.prototype.speak = function(){
console.log(this.name);
};
var Dog = function(name){
Animal.call(this, name);
};
Dog.prototype = Object.create(Animal.prototype);
Dog.prototype.speak = function(){
console.log('woof');
};
var pup = new Dog('fido');
pup.speak();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment