Skip to main content

max

Returns the maximum number among the given arguments

max(num1, num2, ...)

Parameters#

  • num1: A number

Returns#

  • No value

Example#

assertTrue(max(89, 333, 222, 98, -98, 444) == 444)