let len = 100;
let arrayTest = [];
arrayTest.length = len;
for (let i = 0; i < len; ++i)arrayTest[i] = true;
let arrayTest = new Array(100);
let len = arrayTest.length;
for (let i = 0; i < len; ++i)arrayTest[i] = true;
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
For Loop fill | |
Array Fill |
Test name | Executions per second |
---|---|
For Loop fill | 984827.4 Ops/sec |
Array Fill | 949596.9 Ops/sec |
Let's break down the benchmark and explain what's being tested.
Benchmark Definition
The benchmark is comparing two approaches to populate an array with a fixed length:
true
) to each element.length
property of the array to set its size, and then using the new Array()
constructor or assignment operator (=[])
to initialize the array with a specified length.Comparison
The benchmark is comparing the performance of these two approaches on various JavaScript engines.
Pros and Cons
For Loop:
Pros:
Cons:
Array Fill:
Pros:
Cons:
Other Considerations
Library and JavaScript Feature
There is no library being used in this benchmark, but it does rely on a modern JavaScript feature: the let
and const
declarations, which are part of the ECMAScript 2015 (ES6) standard.
Alternative Approaches
Other approaches to populate an array with a fixed length include:
Array.prototype.fill()
methodThese alternatives may offer different trade-offs in terms of performance, readability, and compatibility with older browsers.
Additional Notes
The benchmark results show that the For Loop approach is slightly faster than the Array Fill approach on this specific test case. However, the difference is relatively small, and both approaches should be considered suitable for most use cases.