
Operator exponentiation (^)
number op1 ^ number op2
Raise Op1 to the power of Op2. Op2 can be fractional, positive or negative. Op1 can be fractional, but negative only when Op2 is a whole number.
Examples
- The return value of the following statement is 4.
2^2
- The return value of the following statement is 1626.9438030745541.
7^3.8
