Function minBy

  • It will iterate through each element of the provided values array and return the result of invoking iteratee function/property for each element to produce the desired number, to then be compared with other result numbers to find the minimum value.

    Type Parameters

    • Value

    Parameters

    • values: Value[]

      The array to iterate over.

    • iteratee: IterateeT<Value>

      The function/property to get the value per element.

    Returns number

    The minimum value.

    Since

    1.0.0

    Example

    minBy([1, 2, 3], number => number); // => 1
    

    Example

    minBy([{ a: 1 }, { a: 2 }, { a: 3 }], ({ a }) => a); // => 1
    

    Example

    minBy([{ a: 1 }, { a: 2 }, { a: 3 }], "a"); // => 1