Function minBy

  • This method is like min except that it accepts iteratee which is invoked for each element in array to generate the criterion by which the value is ranked. The iteratee is invoked with one argument: (value).

    Type Parameters

    • T

    Parameters

    • array: ArrayLike<T>

      The array to iterate over.

    • Optional iteratee: any

      The iteratee invoked per element.

      Optional

    Returns T

    Returns the minimum value.

    Since

    5.8.0

    Example

    const objects = [{ 'n': 1 }, { 'n': 2 }]

    minBy(objects, ({ n }) => n)
    // => { 'n': 1 }