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

List.max

max() -> number

Description

Get the highest numeric value in the list.

See also Math.max.

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

See Also