gpt4 book ai didi

javascript - 按索引删除数组元素

转载 作者:行者123 更新时间:2023-11-30 08:33:49 28 4
gpt4 key购买 nike

我好像脑子坏了,无法按索引删除 JS 数组元素。下面有什么根本上是愚蠢的东西吗?

var els;
[0, 1, 3]
0: 0
1: 1
2: 3


["Colour", "Font", "Icon", "Line 1"]
0: "Colour"
1: "Font"
2: "Icon"
3: "Text"

我想要做的就是使用索引位置 0、1 和 3(在本例中)从数组中删除元素 - 但是,当我尝试使用 splice 进行此操作时,它会弄乱索引。

参见:

els.each(function(key, val) {
console.log(key);
req-fields.splice(key,1);
});

最佳答案

尝试这样的事情

function removeIndex(array, index) {
delete array[index];
array = array.filter(function(element) {
return element != undefined
});
return array;
}

例子

removeIndex([1,4,7,13,41,16],3);
=> [1,4,7,41,16]

解释

要从数组中删除一个元素,您可以使用 delete 关键字。这将使该索引处的值成为 undefined。然后您需要过滤数组,并删除未定义的元素。

关于javascript - 按索引删除数组元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34076704/

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