Note: This feature is available in Web Workers.
The min() method of the CSSNumericValue interface returns the lowest value from among those values passed. The passed values must be of the same type.
min()
min(number1)
min(number1, number2)
min(number1, number2, /* …, */ numberN)number1, …, numberN OptionalEither a number or a CSSNumericValue.
A CSSUnitValue.
TypeErrorThrown if an invalid type was passed to the method.
As stated earlier, all passed values must be of the same type and value. Some of the following examples illustrate what happens when they are not.
// Prints "1cm"
console.log(CSS.cm("1").min(CSS.cm("2")).toString());
// Prints "max(1cm, 0.393701in)"
console.log(CSS.cm("1").max(CSS.in("0.393701")).toString());