Function uniq

  • Creates a duplicate-free version of an array, using SameValueZero for equality comparisons, in which only the first occurrence of each element is kept. The order of result values is determined by the order they occur in the array.

    Type Parameters

    • T

    Parameters

    • array: T[]

      The array to inspect.

    Returns T[]

    Returns the new duplicate free array.

    Since

    5.7.0

    See

    [[uniqBy]], [[uniqWith]]

    Example

    uniq([2, 1, 2])
    // => [2, 1]
  • Parameters

    • array: any[]

    Returns any[]