A.Animal.prototype.type=”動(dòng)物”;Animal.prototype.say=function(){console.log(this.type)});
B.Animal={type:”動(dòng)物”,say:function(){console.log(this.type)}
C.Animal.prototype({type:”動(dòng)物”,say:function(){console.log(this.type)})
D.以上說(shuō)法都不正確