Skip to content

Instantly share code, notes, and snippets.

@davidyang
Created January 14, 2015 00:34
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 davidyang/6ef64cc337ee00a7cbd2 to your computer and use it in GitHub Desktop.
Save davidyang/6ef64cc337ee00a7cbd2 to your computer and use it in GitHub Desktop.
var Mammal = function(name) {
this.name = name;
this.offspring = [];
};
Mammal.prototype.sayHello = function() {
return "My name is " + this.name + ", I'm a Mammal";
};
Mammal.prototype.haveBaby = function() {
var babyName = "Baby " + this.name;
var newBaby = new this.constructor(babyName);
this.offspring.push(newBaby);
return newBaby;
};
var Cat = function(name, color) {
// arguments
// this = {};
// this.__proto__ = Cat.prototype
// Mammal.call(this, name);
// Mammal.apply(this, [name]); // ===
Mammal.call(this, name);
this.color = color;
};
Cat.prototype = Object.create(Mammal.prototype);
Cat.prototype.constructor = Cat;
// Cat.prototype = new Mammal(name, color);
Cat.prototype.haveBaby = function(color) {
// var catBabyName = "Baby " + this.name;
// var kitten = new Cat(catBabyName, color);
// this.offspring.push(kitten);
var kitten = Mammal.prototype.haveBaby.call(this, color);
debugger;
kitten.color = color;
return kitten;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment