gpt4 book ai didi

javascript - JS 中的扩展属性?

转载 作者:行者123 更新时间:2023-11-28 21:16:26 25 4
gpt4 key购买 nike

我们可以在 JavaScript 中将属性与对象在运行时关联起来吗就像我们在 C# 中所做的那样。 就像

class abc
{
a =1;
b=2;
}

abc obj;

obj.a // is right
//but can we do
obj.c //.......... by any mean

最佳答案

function abc(){
this.a = 1;
this.b = 2;
}
var obj = new abc();
var obj2 = new abc();
obj.c = "something"; // will affect only this instance
obj2.prototype.d = "something else"; // this will influence all abc instances
alert(obj.d);

关于javascript - JS 中的扩展属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7470848/

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