<!--script src="https://raw.githubusercontent.com/iriscouch/bigdecimal.js/v0.6.1/lib/bigdecimal.js"></script-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/bignumber.js/9.0.1/bignumber.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/big.js/6.0.3/big.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/decimal.js/10.2.1/decimal.min.js"></script>
<script src="https://unpkg.com/bn.js@5.2.1/lib/bn.js"></script>
<!--script src="https://raw.githubusercontent.com/infusion/Fraction.js/v4.0.12/fraction.min.js"></script-->
var a = 57005;
var b = 42;
var c = 1.55;
((((a + b) * b) / 5) * c).toString(); // "742751.9400000001"
var a = 57005;
var b = 42;
var c = 1.55;
((((a + b) * b) / 5) * c).toFixed(9); // "742751.940000000"
var a = new Decimal("57005");
var b = new Decimal("42");
var c = 1.55;
a.plus(b).times(b).dividedBy(5).times(c).toString(); // "742751.94"
var a = new Big("57005");
var b = new Big("42");
var c = 1.55;
a.plus(b).mul(b).div(5).mul(c).toString(); // "742751.94"
var a = new BigNumber("57005");
var b = new BigNumber("42");
var c = 1.55;
a.plus(b).multipliedBy(b).dividedBy(5).multipliedBy(c).toString(); // "742751.94"
var a = new BN("57005");
var b = new BN("42");
var c = 1.55;
a.add(b).mul(b).divn(5).muln(c).toString(); // "742750" the divn(5) affects the precision
var a = new BN("57005");
var b = new BN("42");
var c = 1.55;
a.iadd(b).imul(b).idivn(5).imuln(c).toString(); // "742750" the idivn(5) affects the precision
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Native | |
Native + toFixed | |
decimal.js | |
big.js | |
bignumber.js | |
bn.js | |
bn.js in-place |
Test name | Executions per second |
---|---|
Native | 1370193920.0 Ops/sec |
Native + toFixed | 13581755.0 Ops/sec |
decimal.js | 615282.1 Ops/sec |
big.js | 326783.9 Ops/sec |
bignumber.js | 338425.5 Ops/sec |
bn.js | 1029262.7 Ops/sec |
bn.js in-place | 1087712.1 Ops/sec |
The benchmark in question compares the performance of various JavaScript libraries for handling arbitrary-precision arithmetic against native JavaScript number handling. Specifically, it evaluates how well four libraries—bignumber.js
, big.js
, decimal.js
, and bn.js
—perform alongside two native approaches.
Native JS Arithmetic:
Native
Native with toFixed
:
Native + toFixed
toFixed(9)
to control the number of decimal places.decimal.js:
decimal.js
decimal.js
library to handle the calculation.decimal.js
is designed to enable users to work with decimal numbers accurately without binary floating-point inaccuracies.big.js:
big.js
big.js
library.decimal.js
, it handles arbitrary-precision arithmetic, particularly focusing on large numbers.decimal.js
, it incurs some performance penalty due to the overhead of library functions.bignumber.js:
bignumber.js
bignumber.js
library.bn.js:
bn.js
and bn.js in-place
iadd
, imul
, idivn
, etc.).bn.js
is optimized for working with large integers in a performant manner.bn.js
is optimized for integer arithmetic, it may not handle decimal points as accurately as decimal-focused libraries.The execution results indicate significant differences in performance between these various methods. The native approach (Native
) outperformed all library-based solutions by a considerable margin, achieving around 1.37 billion executions per second. In contrast, the other approaches, particularly the library-based methods, operated in the hundreds of thousands to low millions of executions per second.
Native + toFixed
added some overhead but was still relatively fast compared to libraries.bn.js
library showed strong performance, especially in its in-place variant, indicating some efficiency in utilizing existing instances.decimal.js
and big.js
offered lower performance than bn.js
but are more suitable for applications needing high-precision decimal calculations.Number
type for calculations, straightforward but limited concerning precision.BigInt
type allows for arbitrary-precision integers but does not handle decimal points, making it suitable only for precise integer arithmetic.This benchmark serves to highlight the trade-offs between performance and precision when using native JavaScript operations versus various libraries designed for higher accuracy. The results underscore the importance of selecting the right approach based on the specific requirements of the application regarding precision, performance, and overhead.