power

Calculates the result of raising one number to the power of another number.

Function

result = power(input, exponent)

Arguments

ArgumentData Type
inputany
resultany

Comments

Raises the input value to the specified exponent.

Examples

result = power(2,3) /* result = 8 */