如何获取数组中的唯一值

2022-08-30 00:27:18

如何获取数组中唯一值的列表?我是否总是必须使用第二个数组,或者是否有类似于JavaScript中Java的哈希映射的东西?

我将只使用JavaScriptjQuery。不能使用其他库。


答案 1

这里有一个更干净的ES6解决方案,我看到这里没有包括。它使用 Set点差运算符...

var a = [1, 1, 2];

[... new Set(a)]

哪个返回[1, 2]


答案 2

或者对于那些寻找与当前浏览器兼容的单行(简单且功能强大)的人来说:

let a = ["1", "1", "2", "3", "3", "1"];
let unique = a.filter((item, i, ar) => ar.indexOf(item) === i);
console.log(unique);

更新 2021我建议看看Charles Clayton的答案,因为最近对JS进行了更改,因此有更简洁的方法可以做到这一点。

更新 2017-04-18

看起来'Array.prototype.include'现在在最新版本的主线浏览器中得到了广泛的支持(兼容性)

2015 年 7 月 29 日更新:

有计划让浏览器支持标准化的“Array.prototype.include”方法,尽管它没有直接回答这个问题;通常是相关的。

用法:

["1", "1", "2", "3", "3", "1"].includes("2");     // true

Pollyfill(浏览器支持来源来自 mozilla):

// https://tc39.github.io/ecma262/#sec-array.prototype.includes
if (!Array.prototype.includes) {
  Object.defineProperty(Array.prototype, 'includes', {
    value: function(searchElement, fromIndex) {

      // 1. Let O be ? ToObject(this value).
      if (this == null) {
        throw new TypeError('"this" is null or not defined');
      }

      var o = Object(this);

      // 2. Let len be ? ToLength(? Get(O, "length")).
      var len = o.length >>> 0;

      // 3. If len is 0, return false.
      if (len === 0) {
        return false;
      }

      // 4. Let n be ? ToInteger(fromIndex).
      //    (If fromIndex is undefined, this step produces the value 0.)
      var n = fromIndex | 0;

      // 5. If n ≥ 0, then
      //  a. Let k be n.
      // 6. Else n < 0,
      //  a. Let k be len + n.
      //  b. If k < 0, let k be 0.
      var k = Math.max(n >= 0 ? n : len - Math.abs(n), 0);

      // 7. Repeat, while k < len
      while (k < len) {
        // a. Let elementK be the result of ? Get(O, ! ToString(k)).
        // b. If SameValueZero(searchElement, elementK) is true, return true.
        // c. Increase k by 1.
        // NOTE: === provides the correct "SameValueZero" comparison needed here.
        if (o[k] === searchElement) {
          return true;
        }
        k++;
      }

      // 8. Return false
      return false;
    }
  });
}