min_.min(list, [iteratee], [context])
Returns the minimum value in list. If an iteratee function is provided, it will be used on each value to generate the criterion by which the value is ranked. Infinity is returned if list is empty, so an isEmpty guard may be required.
var numbers = [10, 5, 100, 2, 1000]; _.min(numbers); => 2
Please login to continue.