subtraction

// x - y
new Big(x).minus(y)
Copy the code

The multiplication

// x * y
new Big(x).times(y)
Copy the code

division

// x / y
new Big(x).div(new Big(y))
Copy the code