This version of the product has reached
End of Life.
pow
pow(base: Number, power: Number): Number
Raises the value of a base number to the specified power.
Parameters
Name
Description
base
A number (Number type) that serves as the base.
power
A number (Number type) that serves as the power.
Example
This example raises the value a base number to the specified power.
Note that you can also use the pow(base,power) notation (for example,
pow(2,3) to return 8).