gpt4 book ai didi

javascript - 原型(prototype)属性抛出未定义

转载 作者:搜寻专家 更新时间:2023-11-01 05:31:16 25 4
gpt4 key购买 nike

<分区>

为什么 instance 的原型(prototype) property 抛出 undefined

function Test(name){
this.name = name;
}

Test.prototype = {
constructor: Test,
sayHello : function(){
console.log(this.name);
}
}

var z = new Test("Hello");


console.log(z.prototype); //undefined
console.log(zUtils.constructor); // Test

我可以通过 z.sayHello() 访问 sayHello 方法,那为什么我的 instance prototype 返回的是 undefined 而不是Test.prototype?.

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com