max Function

Retrieves the greater of the two figures.


anytype max(anytype object1, anytype object2)

Parameter

Description

object1

The first figure.

object2

The second figure.

object1 or object2—whichever is greater.

// Returns the value 12.1.
max(12.0,12.1);

Community Additions

ADD
Show: