Skip to main content

min

Returns the minimum number among the given arguments

min(num1, num2, ...)

Parameters#

  • num1: A number

Returns#

  • No value

Example#

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