.min()

Method to get the minimum value from an array. The function tries to convert all values to a number.

The method .min() is located in the file array.jsxinc.

Usage

var array = new Array(1, 2, 3, 4, "5");
var lowest= array.min();

Parameters

This method has no parameters.

Return values

Value Meaning
false There is no number in this array.
number The lowest number in the array.