Multiplies two Big instances and returns the result as a new Big instance.
The first Big instance.
The second Big instance.
Optional
Whether to mutate the first Big instance. Defaults to false.
The result of the multiplication.
mulBig(new Big(1), new Big(2)); // new Big instance with value 2mulBig(new Big(1.1), new Big(2.2)); // new Big instance with value 2.42mulBig(new Big(1.1), new Big(2)); // new Big instance with value 2.2 Copy
mulBig(new Big(1), new Big(2)); // new Big instance with value 2mulBig(new Big(1.1), new Big(2.2)); // new Big instance with value 2.42mulBig(new Big(1.1), new Big(2)); // new Big instance with value 2.2
Generated using TypeDoc
Multiplies two Big instances and returns the result as a new Big instance.