Gets the minimum value of array. If array is empty or falsey undefined is returned.
array
undefined
The array to iterate over.
Returns the minimum value.
_.min([4, 2, 8, 6]); // => 2 _.min([]); // => undefined