Calculates the result of raising one number to the power of another number.
Function
result = power(input, exponent)
Arguments
Argument | Data Type |
input | any |
---|---|
result | any |
Comments
Raises the input value to the specified exponent.
Examples
result = power(2,3) /* result = 8 */