Subtracts two big values 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 subtraction.
subBig(new Big(1), new Big(2)); // new Big instance with value -1subBig(new Big(1.1), new Big(2.2)); // new Big instance with value -1.1 Copy
subBig(new Big(1), new Big(2)); // new Big instance with value -1subBig(new Big(1.1), new Big(2.2)); // new Big instance with value -1.1
Generated using TypeDoc
Subtracts two big values and returns the result as a new Big instance.