Number Functions
power()
Overview The power() function takes baseNumber and powerNumber as arguments. It returns the baseNumber raised to the power of powerNumber. Return Type Decimal Syntax <variable> = <baseNumber>.power( <powerNumber> ); (OR) <variable> = ...
max()
Overview The max() function takes numberOne and numberTwo as arguments, and returns the bigger number of the two. Return Type Decimal Syntax <variable> = <numberOne>.max( <numberTwo> ); (OR) <variable> = max(<numberOne>, <numberTwo> ); Parameter ...
min()
Overview The min() function takes numberOne and numberTwo as arguments, and returns the smaller number of the two. Return Type Decimal Syntax <variable> = <numberOne>.min(<numberTwo> ); (OR) <variable> = min( <numberOne>, <numberTwo> ); Parameter ...