仅保留副本向两个数组添加 - JavaScript


假设我们有以下两个文字数组

const arr1 = [2, 4, 5, 3, 7, 8, 9];
const arr2 = [1, 4, 5, 2, 3, 7, 6];

我们需要编写一个 JavaScript 函数,该函数接受两个这样的数组,并返回一个新数组,其中删除了所有重复项(仅应出现一次)。

示例

让我们编写此函数的代码 −

const arr1 = [2, 4, 5, 3, 7, 8, 9];
const arr2 = [1, 4, 5, 2, 3, 7, 6];
const mergeArrays = (first, second) => {
   const { length: l1 } = first;
   const { length: l2 } = second;
   const res = [];
   let temp = 0;
   for(let i = 0; i < l1+l2; i++){
      if(i >= l1){
         temp = i - l1;
         if(!res.includes(first[temp])){
            res.push(first[temp]);
         };
      }else{
         temp = i;
         if(!res.includes(second[temp])){
            res.push(second[temp]);
         };
      };
   };
   return res;
};
console.log(mergeArrays(arr1, arr2));

输出

控制台中的输出: −

[
   1, 4, 5, 2, 3,
   7, 6, 8, 9
]

更新于: 15-Sep-2020

61 次浏览

开启你的 事业

完成课程获得认证

开始
广告