为 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))
}

posted @ 2022-01-11 02:40  黄燃  阅读(110)  评论(0编辑  收藏  举报