Power
Calculates a number raised to a power
Power(4, 2) → 16
Power(2, -1) → 0.5Inputs
Power(base, exponent)
base- The number to raise to theexponentpower. Ifbaseis negative,exponentmust be an integer.exponent- The exponent to raisebaseto.