Version: v0.8.1 - Beta.  We welcome contributors & feedback.

Math.min

Math.min($listOfNumbers) -> number

Description

Get the lowest numeric value in the list.

Returns 0 if the list is empty.

Math.min([5, 10, -33])
//= -33

See Also