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

Math.max

Math.max($listOfNumbers) -> number

Description

Get the highest numeric value in the list.

Returns 0 if the list is empty.

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

See Also