var a = 100000000;
var tmp = Math.round((Math.random()*100000000));
var i = 8;
var tmp = tmp/Math.pow(10, i);
var tmp = Math.round((Math.random()*100000000));
var i = 8;
var tmp = tmp/(10 ** i);
var tmp = Math.round((Math.random()*100000000));
var i = 8;
while(i-- > 0){
tmp = tmp/10;
}
var tmp = Math.round((Math.random()*100000000));
var i = 8;
var tmp = tmp/Number(10+'e'+i);
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
pow | |
** | |
* | |
e to number |
Test name | Executions per second |
---|---|
pow | 37991288.0 Ops/sec |
** | 72940336.0 Ops/sec |
* | 19437200.0 Ops/sec |
e to number | 39124744.0 Ops/sec |
This benchmark compares the performance of four different methods to divide a number by a power of ten in JavaScript. The benchmark aims to identify which approach is the fastest by measuring how many times each method can execute within a second.
Math.pow:
pow
var tmp = Math.round((Math.random()*100000000));
var i = 8;
var tmp = tmp/Math.pow(10, i);
Math.pow
function to calculate (10^i) and then performs the division.Exponentiation Operator (**
):
**
var tmp = Math.round((Math.random()*100000000));
var i = 8;
var tmp = tmp/(10 ** i);
Multiplicative Loop:
*
var tmp = Math.round((Math.random()*100000000));
var i = 8;
while(i-- > 0){
tmp = tmp/10;
}
i
iterations.String Representation with Exponential Notation:
e to number
var tmp = Math.round((Math.random()*100000000));
var i = 8;
var tmp = tmp/Number(10+'e'+i);
10e8
.The results show the number of executions per second for each method. The exponentiation operator (**
) was the fastest, achieving approximately 72.9 million executions per second. The other methods followed, with e to number
at around 39.1 million, Math.pow
at about 37.9 million, and the multiplicative loop (*
) trailing at approximately 19.4 million executions per second.
While the benchmark tests were compared within a specific context of dividing by powers of ten, similar performance comparisons can be made for other mathematical operations or leveraging different libraries, like:
Ultimately, for these types of operations, native JavaScript arithmetic is usually preferred for performance, while more complex mathematical tasks may benefit from dedicated libraries. Furthermore, developers should consider readability and maintainability alongside performance when choosing their approaches.