Function to get the minimum (numeric) value from an array.This function is equivalent to the method .min()
var array = new Array(1, 2, 3, 4, "5"); var lowest= array_min(array);
Parameter | Data type | Required | Description |
---|---|---|---|
array | array | Yes | The array to get the minimum value off |
Value | Meaning |
---|---|
false | There is no number in this array |
number | The lowest number in the array |