Raises the current number to the power of exponent.
exponent
Example:
print(2.power(3)); // Outputs: 8 (2^3)
num power(num exponent) => pow(this, exponent).toInt();