pow
numeric pow(base, exponent)
Returns the value of base raised to the power of exponent.
Either both arguments must be bigint or neither, otherwise coercion will fail.
Parameters
- base — base, either bigint or coerced number.
- exponent — exponent, either bigint or coerced number.
Returns
- the value of baseexponent,
as bigint if arguments are, otherwise number.