pow method

num pow(
  1. num exponent
)

Returns pow of this.

see math.pow.

Implementation

num pow(num exponent) {
  return math.pow(this, exponent);
}