pow
To calculate the power of a number
The function returns the power of a base number using the exponent. If the exponent has the value 0.5, the result is the root of the base number.
Syntax
pow(number, number)
Return
number
Examples
pow(x,y)
To calculate the power of a base x using the exponent y.
Result: 64
Result: 8
Result: 3.9999999999999996
Last updated