gpt4 book ai didi

javascript - 拼接数组数组中的特定值

转载 作者:行者123 更新时间:2023-11-28 21:07:08 24 4
gpt4 key购买 nike

我有一个关联数组存储在另一个关联数组中。我知道如何在常规数组中拼接特定值,如下所示:

arr.splice(arr.indexOf('specific'), 1);

我想知道如何拼接这样的数组:

arr['hello']['world']

编辑这会缩短hello['world']['Continue']

var hello = {};
hello['world'] = {};
hello['world']['continent'] = "country";
delete hello['world']['continent'];
alert(hello['world']['continent'])

最佳答案

您应该能够只使用删除关键字。

delete arr["hello"]["world"]

How do I remove objects from a javascript associative array?

根据其他评论进行编辑:

为了可读性,您还可以这样做:

delete arr.hello.world

由于我们实际上只是在讨论对象,而不是传统的数组,因此没有数组长度。但是,您可以从对象中删除键。

关于javascript - 拼接数组数组中的特定值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9608010/

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