The base Big number.
The exponent (non-negative integer). Defaults to 2.
Optional
mutable: boolean = falseWhether to mutate the first Big instance. Defaults to false.
powBig(new Big(2), 0); // new Big instance with value 1
powBig(new Big(2), 1); // new Big instance with value 2
powBig(new Big(2), 3); // new Big instance with value 8
powBig(new Big(2), 3.3); // throws Error
powBig(new Big(2), -3); // throws Error
Generated using TypeDoc
Raises a Big number to the power of another Big number.