Returns the smallest number in an array.
An array of numbers.
The minimum value.
Will throw an error if the array is empty.
min([1, 2, 3]); // returns 1min([-5, 0, 5]); // returns -5 Copy
min([1, 2, 3]); // returns 1min([-5, 0, 5]); // returns -5
Returns the smallest number in an array.