Big integer problem of js

want to use big integer to do the calculation like java, but with this bug:

TypeError: bigInt(...).multiply is not a function

I don"t know why, but I use the model of big-integer

.
Mar.16,2021

js does not have this built-in function. You don't need to convert it extra. Js will process it into 12e+7 numbers like this scientific counting

.
Menu