gpt4 book ai didi

javascript - javascript 中关联 []、{} 和对象之间的区别

转载 作者:行者123 更新时间:2023-11-29 10:19:33 24 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
What is the difference between an array and an object?
The item exists in the array but it says that the array is 0 length?

我对 javascript 中的对象和关联数组有点困惑。我读到这个:question但是这个问题说两者没有太大区别。我在控制台中写了这个:

var a = [];
a["A"] = 1;

var b = {};
b["B"] = 2;

var c = new Object();
c["C"] = 3;

上面的输出如下:

a gives {A : 1} 
b gives {B : 2}
c gives {C : 3}

以上三种情况都给出了相同的结果,因为它们都给出了一个对象。问题是如何在 javascript 中处理以上 3 种情况。

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