Raises a number to the given power.
function (optional
number
as nullable any, optionalpower
as nullable any) as nullable any
Returns the result of raising number
to the power of power
. If number
or power
are null, Number.Power
returns null.
Number.Operations
Find the value of 5 raised to the power of 3 (5 cubed).
Number.Power(5, 3)
125