VOOZH about

URL: https://www.geeksforgeeks.org/javascript/collect-js-min-method/

⇱ Collect.js min() Method - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Collect.js min() Method

Last Updated : 27 Nov, 2020

The min() method is used to return the minimum element from the given array or collection. The method can be specified with a key as a parameter so that only the values of that key in the collection would be considered and the minimum element would be found from those values.

Syntax:

collect(array).min(key)

Parameters: The collect() method takes one argument that is converted into the collection and then min() method is applied to it. The min() method holds the key as a parameter.

Return Value: This method returns the minimum element from the given collection.

Below example illustrate the min() method in collect.js:

Example 1:

Output:

-70

Example 2:

Output:

80
Comment
Article Tags: