gpt4 book ai didi

javascript - 将两个数组排序/相交为两个新数组。

转载 作者:行者123 更新时间:2023-12-03 09:37:52 25 4
gpt4 key购买 nike

假设我有两个列表。现有的一个具有一些名称,而新的一个可能具有一些新名称、删除的名称或仍然相同的名称。

var currentList = ['Daniel', 'Lara', 'Horst'];
var newList = ['Mario', 'Lara'];

// Expected result
toDelete = ['Daniel', 'Horst'];
toAdd = ['Mario'];

最后我需要两个数组,其中包含新名称和可以删除的名称。两个数组中出现的名称可以忽略。

我真的不知道如何称呼这种类型的“排序”,所以即使是一个流行词也能有所帮助。请注意,我根本没有 jQuery。

提前致谢。

最佳答案

这非常简单,你可以用 2 个循环来完成:

var currentList = ['Daniel', 'Lara', 'Horst'];
var newList = ['Mario', 'Lara'];

var toDelete = [];
var toAdd = [];
for(var i=0;i<newList.length;i++){
if(currentList.indexOf(newList[i]) >-1)
toAdd.push(newList[i])
}

for(var i=0;i<currentList.length;i++){
if(newList.indexOf(currentList[i]) == -1)
toDelete.push(currentList[i]);
}

console.log('dele',toDelete);
console.log('add',toAdd);

实例:http://jsfiddle.net/r6L7LpeL/

关于javascript - 将两个数组排序/相交为两个新数组。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31271935/

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