What is the meaning of `c`, `e`, and `s` in bignumber.js?

1.7k Views Asked by At

What are the meanings of the c, e, and s fields in the object produced by bignumber.js?

For example:

> new BigNumber('1234')
{ c: [1234], e: 3, s: 1 }
> new BigNumber('12345678901234567890')
{ c: [123456, 78901234567890], e: 19, s: 1 }
1

There are 1 best solutions below

4
On BEST ANSWER
  • c | coefficient | number[]| Array of base 1e14 numbers
  • e | exponent | number | Integer, -1000000000 to 1000000000 inclusive
  • s | sign | number | -1 or 1