合并唯一的两个数组可以使用以下方法:
const array1 = [1, 2, 3];
const array2 = [2, 3, 4];
const set1 = new Set(array1);
const set2 = new Set(array2);
const mergedSet = new Set([...set1, ...set2]);
const mergedArray = Array.from(mergedSet);
console.log(mergedArray); // [1, 2, 3, 4]
const array1 = [1, 2, 3];
const array2 = [2, 3, 4];
const mergedArray = array1.concat(array2).filter((value, index, self) => {
return self.indexOf(value) === index;
});
console.log(mergedArray); // [1, 2, 3, 4]
以上两种方法都可以合并两个数组并去除重复的元素,根据实际情况选择适合的方法即可。
腾讯云相关产品和产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云