在JavaScript中制作另一个数组的重复值的数组

我们需要编写一个包含一组文字的JavaScript函数。该函数应准备一个新数组,其中包含原始数组中所有不唯一的元素(重复元素)。

例如-

如果输入数组是-

const arr = [3, 6, 7, 5, 3];

那么输出应该是-

const output = [3];

示例

为此的代码将是-

const arr = [3, 6, 7, 5, 3];
const makeDuplicatesArray = (arr = []) => {
   const res = [];
   for(let i = 0; i < arr.length; i++){
      if(i === arr.lastIndexOf(arr[i])){
         continue;
      };
      res.push(arr[i])
   };
return res;
};
console.log(makeDuplicatesArray(arr));

输出结果

控制台中的输出将是-

[3]
猜你喜欢