1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
| function Cat(){ this.eat = '肉'; }
function Tiger(){ this.color = '黑黄相间'; }
function Cheetah(){ this.color = '报文'; }
function Lion(){ this.color = '土黄色'; }
Tiger.prototype = Cheetah.prototype = Lion.prototype = new Cat();
var T = new Tiger(); var C = new Cheetah(); var L = new Lion();
console.log(T.color); console.log(C.color); console.log(L.color);
console.log(T.eat); console.log(C.eat); console.log(L.eat);
|