Max

max( a, b )

Return the larger value of a or b.

Description

max( a, b )

This function returns the larger of the two values, a or b.

Parameters

a Any value
b Any value

Return value

If a>=b, returns the value a If a<b, returns the value b

Example usage

max(15, 17)

Returns 17.