gpt4 book ai didi

javascript - 为什么对象嵌套数组中的变量不会改变?

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:48:16 25 4
gpt4 key购买 nike

function Dealership = function(){
this.car1="Honda";
this.car2="Chevy";
this.car3="Toyota";
this.carList=[this.car1,this.car2,this.car3];
};

var tomsauto = new Dealership();
tomsauto.car2="Subaru";
console.log(tomsauto.carList); //returns honda chevy toyota

我对数组的处理方式感到困惑。它是静态的,只保存它在实例化时的变量值,还是应该在我更改 tom.car1 时更改“this.car1”?

最佳答案

当您通过该数组实例化表达式创建数组时,运行时系统会将每个对象属性的复制到数组中。如果您稍后更改属性的值,它们将独立地更改数组元素。

JavaScript 无法使一个对象的属性“镜像”另一个对象的属性。 (好吧,没有内在的方法;您可以编写代码来做到这一点。)

关于javascript - 为什么对象嵌套数组中的变量不会改变?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21715394/

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