Returns the first number raised to the second number.
power number exponent
number - The number argument. (must be: number)
exponent - The exponent argument. (must be: number)
print power 10 2 100.0
print power 12.3 5 281530.56843
** - Returns the first number raised to the second number.
exp - Raises E (natural number) to the power specified.
log-10 - Returns the base-10 logarithm.
log-2 - Return the base-2 logarithm.
log-e - Returns the base-E (natural number) logarithm.