其他分享
首页 > 其他分享> > 为 Array 对象添加一个去除重复项的方法

为 Array 对象添加一个去除重复项的方法

作者:互联网

方法一:

Array.prototype.uniq = function () {
  let arr = [];
  this.forEach((item, index, array) => {
    const result = arr.some((x) => Object.is(x, item));
    if (result === false) {
      arr.push(item);
    }
  });
  return arr;
}

 

方法二:(来自他人...T T

Array.prototype.uniq = function () {
  return Array.from(new Set(this))
}

标签:arr,prototype,item,添加,result,去除,Array,uniq
来源: https://www.cnblogs.com/ran2022/p/15786727.html