function Animal(){} Animal.prototype.s = 'animal'; function Cat(){ this.name = 'cat'; } Cat.prototype = Animal.prototype; var animal = new Animal(); var cat = new Cat(); document.write(cat.s);