Exponent | MATH_POWER

Syntax

MATH_POWER( [value], [other] )

Parameters

value
A number. If the value is not a NUMBER, the FLOAT operation will be used to convert it.

other
A number. If the value is not a NUMBER, the FLOAT operation will be used to convert it.

Return Value

Returns a number.

Description

Raise a value to another value.

Examples

MATH_POWER(3, 4) # returns 81
MATH_POWER(null, null) # returns 1
MATH_POWER("-2", "3") # returns -8