gpt4 book ai didi

javascript - 如何向 "new"实例添加属性?

转载 作者:行者123 更新时间:2023-12-04 02:03:27 25 4
gpt4 key购买 nike

如何向新函数的实例添加属性?

例如:

function Constructor() {
this.color = "red";
}

var s = new Constructor() {
this.color = "blue";
this.height = 30px;
}

s.height 被调用时,我得到了一个未定义的结果。如何正确执行此操作?

最佳答案

function Constructor() {
this.color = "red";
}

var s = new Constructor();
s.color = "blue";
s.height = 30px;

关于javascript - 如何向 "new"实例添加属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6918613/

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