Working with scientific notation values in Javascript / Node

77 Views Asked by At

I have an array of Objects that I got from my database. These Objects hold balance values that sometimes are printed in scientific notationn (see error below).

How can I parse these into an Object of Type BigNumber (Bignumber.js)?

My attempt

const b = BigNumber.from(balance);

I am getting this error

Error: overflow (fault="overflow", operation="BigNumber.from", value=8.8888888e+25, code=NUMERIC_FAULT, version=bignumber/5.5.0)
0

There are 0 best solutions below