A JavaScript library for arbitrary-precision decimal and non-decimal arithmetic.
Features
- Integers and decimals
- Simple API but full-featured
- Faster, smaller, and perhaps easier to use than JavaScript versions of Java's BigDecimal
- 8 KB minified and gzipped
- Replicates the
toExponential
, toFixed
, toPrecision
and toString
methods of JavaScript's Number type - Includes a
toFraction
and a correctly-rounded squareRoot
method - Supports cryptographically-secure pseudo-random number generation
- No dependencies
- Wide platform compatibility: uses JavaScript 1.5 (ECMAScript 3) features only
- Comprehensive documentation and test set
If a smaller and simpler library is required see big.js.
It's less than half the size but only works with decimal numbers and only has half the methods.
It also does not allow NaN
or Infinity
, or have the configuration options of this library.
See also decimal.js, which among other things adds support for non-integer powers, and performs all operations to a specified number of significant digits.
Load
The library is the single JavaScript file bignumber.js (or minified, bignumber.min.js).
Browser:
<script src='path/to/bignumber.js'></script>
Node.js:
$ npm install --save bignumber.js
var BigNumber = require('bignumber.js');
ES6 module (bignumber.mjs):
import {BigNumber} from 'bignumber.js';
AMD loader libraries such as requireJS:
require(['bignumber'], function(BigNumber) {
});
Use
In all examples below, var
, semicolons and toString
calls are not shown.
If a commented-out value is in quotes it means toString
has been called on the preceding expression.
The library exports a single function: BigNumber
, the constructor of BigNumber instances.
It accepts a value of type Number, String or BigNumber,
x = new BigNumber(123.4567)
y = BigNumber('123456.7e-3')
z = new BigNumber(x)
x.isEqualTo(y) && y.isEqualTo(z) && x.isEqualTo(z)
and a base can be specified.
a = new BigNumber(1011, 2)
b = new BigNumber('zz.9', 36)
c = x.plus(y)
Note that a BigNumber is created from a Number's decimal toString()
value not from its underlying binary value. If the latter is required, then pass the Number's toString(2)
value and specify base 2.
new BigNumber(Number.MAX_VALUE.toString(2), 2)
If the limited precision of Number values is not well understood, it is recommended to pass String values rather than Number values to avoid a potential loss of precision.
new BigNumber(1.0000000000000001);
new BigNumber(88259496234518.57);
new BigNumber(99999999999999999999);
new BigNumber(2e+308);
new BigNumber(1e-324);
new BigNumber(0.7 + 0.1);
A BigNumber is immutable in the sense that it is not changed by its methods.
0.3 - 0.1
x = new BigNumber(0.3)
x.minus(0.1)
x
The methods that return a BigNumber can be chained.
x.dividedBy(y).plus(z).times(9)
x.times('1.23456780123456789e+9').plus(9876.5432321).dividedBy('4444562598.111772').integerValue()
Some of the longer method names have a shorter alias.
x.squareRoot().dividedBy(y).exponentiatedBy(3).isEqualTo( x.sqrt().div(y).pow(3) )
x.modulo(y).multipliedBy(z).eq( x.mod(y).times(z) )
As with JavaScript's Number type, there are toExponential
, toFixed
and toPrecision
methods
x = new BigNumber(255.5)
x.toExponential(5)
x.toFixed(5)
x.toPrecision(5)
x.toNumber()
and a base can be specified for toString
.
x.toString(16)
There is also a toFormat
method which may be useful for internationalisation
y = new BigNumber('1234567.898765')
y.toFormat(2)
The maximum number of decimal places of the result of an operation involving division (i.e. a division, square root, base conversion or negative power operation) is set using the config
method of the BigNumber
constructor.
The other arithmetic operations always give the exact result.
BigNumber.config({ DECIMAL_PLACES: 10, ROUNDING_MODE: 4 })
x = new BigNumber(2);
y = new BigNumber(3);
z = x.dividedBy(y)
z.squareRoot()
z.exponentiatedBy(-3)
z.toString(2)
z.multipliedBy(z)
z.multipliedBy(z).decimalPlaces(10)
There is a toFraction
method with an optional maximum denominator argument
y = new BigNumber(355)
pi = y.dividedBy(113)
pi.toFraction()
pi.toFraction(1000)
and isNaN
and isFinite
methods, as NaN
and Infinity
are valid BigNumber
values.
x = new BigNumber(NaN)
y = new BigNumber(Infinity)
x.isNaN() && !y.isNaN() && !x.isFinite() && !y.isFinite()
The value of a BigNumber is stored in a decimal floating point format in terms of a coefficient, exponent and sign.
x = new BigNumber(-123.456);
x.c
x.e
x.s
For advanced usage, multiple BigNumber constructors can be created, each with their own independent configuration which applies to all BigNumber's created from it.
BigNumber.config({ DECIMAL_PLACES: 10 })
BN = BigNumber.clone({ DECIMAL_PLACES: 5 })
x = new BigNumber(1)
y = new BN(1)
x.div(3)
y.div(3)
For futher information see the API reference in the doc directory.
Test
The test/modules directory contains the test scripts for each method.
The tests can be run with Node.js or a browser. For Node.js use
$ npm test
or
$ node test/test
To test a single method, use, for example
$ node test/methods/toFraction
For the browser, open test/test.html.
Performance
See the README in the perf directory.
Build
For Node, if uglify-js is installed
npm install uglify-js -g
then
npm run build
will create bignumber.min.js.
A source map will also be created in the root directory.
Feedback
Open an issue, or email
Michael
M8ch88l@gmail.com
Licence
The MIT Licence.
See LICENCE.