Computes the minimum of the numbers.
minimum
numbers
The array to iterate over.
The minimum value.
1.0.0
min([1, 2, 3]); // => 1 Copy
min([1, 2, 3]); // => 1
Computes the
minimum
of thenumbers
.