pow method

num pow(
  1. num exponent
)

Returns this num to the power of exponent.

Implementation

num pow(num exponent) => math.pow(this, exponent);