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

上一篇:897. 递增顺序搜索树


下一篇:LeetCode,897. 递增顺序查找树(二叉搜索树)