function name() { this.prototype.age = "15"; };
1 回答
互换的青春
TA贡献1797条经验 获得超6个赞
为什么你不单步看看?
就算不单步,看错误提示都应该知道是怎么回事儿吧。
单纯想要程序不报错,很简单:
function name(){ this.prototype = {}; this.prototype.age = "15"; };
构造函数的prototype,和this指向实例的prototype不是一回事儿
如果你想直接在实例上操作
类
的prototype,你需要function name(){ const type = Object.getPrototypeOf(this); type.age = "15"; };
添加回答
举报
0/150
提交
取消