var arr = [];
for (var i = 0; i < 1000; i++) {
arr[i] = i;
}
function someFn(i) {
return i * 3 * 8;
}
var newArr = [];
for (var i = 0, len = arr.length; i < len; i++) {
newArr.push(someFn(arr[i]));
}
var newArr = new Array(arr.length);
for (var i = 0, len = arr.length; i < len; i++) {
newArr.push(someFn(arr[i]));
}
var newArr = [];
for (const el of arr) newArr.push(someFn(el));
var newArr = new Array(arr.length);
for (const el of arr) newArr.push(someFn(el));
var newArr = arr.map(someFn)
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
for-native | |
for-with-init | |
for..of-native | |
for..of-with-init | |
map |
Test name | Executions per second |
---|---|
for-native | 7605.7 Ops/sec |
for-with-init | 7426.0 Ops/sec |
for..of-native | 13518.3 Ops/sec |
for..of-with-init | 13319.0 Ops/sec |
map | 84485.4 Ops/sec |
Benchmark Overview
The MeasureThat.net benchmark measures the performance of different JavaScript iteration methods: native for loops, with initialization, and array methods (map). The test compares the execution speed of these methods in creating an array by iterating over a large array.
Iteration Methods Compared
for
loops to iterate over the array.map()
):const
: This method uses a const
variable to store the length of the array, similar to the previous approach.Comparison Summary
Method | Performance |
---|---|
Native For Loops | Slowest |
For Loops with Initialization | Similar to native for loops |
Array Methods (map() )) |
Fastest |
For Loops with Initialization using const |
Similar to native for loops |
Library Used: None
There is no specific library used in this benchmark. The tests focus on the built-in JavaScript features and methods.
Special JS Feature or Syntax: for...of
The for...of
loop is a newer, more modern syntax introduced in ECMAScript 2015 (ES6). It allows iterating over arrays without manual indexing.
Pros of Using for...of
Cons of Using for...of
Other Alternatives
forEach()
or custom loop implementations, could be tested in future benchmarks.Array()
, new Array()
) might also be interesting.Keep in mind that the actual performance results may vary depending on specific use cases and environments.