<!--your preparation HTML code goes here-->
/*your preparation JavaScript code goes here
To execute async code during the script preparation, wrap it as function globalMeasureThatScriptPrepareFunction, example:*/
async function globalMeasureThatScriptPrepareFunction() {
// This function is optional, feel free to remove it.
// await someThing();
}
/*When writing async/deferred tests, use `deferred.resolve()` to mark test as done*/
const arr = new Array(1000);
arr[Symbol.iterator]().forEach(v => {
var a = v
});
const arr = new Array(1000);
for (var v of arr) {
var a = v
}
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
forEach | |
for of |
Test name | Executions per second |
---|---|
forEach | 17606.7 Ops/sec |
for of | 375022.7 Ops/sec |
The benchmark in question examines the performance of two different methods for iterating over an array of 1000 elements in JavaScript: using forEach
and for...of
loops. Here's a detailed explanation of what's being tested, the methods' pros and cons, and other considerations.
forEach:
forEach
method on the array, utilizing the Symbol.iterator
to get the iterator of the array and then calling forEach
to iterate over each element.const arr = new Array(1000);
arr[Symbol.iterator]().forEach(v => {
var a = v;
});
for...of:
for...of
loop, which is a modern way to iterate over iterable objects in JavaScript.const arr = new Array(1000);
for (var v of arr) {
var a = v;
}
Pros of forEach:
forEach
method can be more expressive at times and may be easier to understand for developers who are familiar with functional programming concepts.forEach
with other array methods like map
, filter
, etc.Cons of forEach:
forEach
is significantly slower than for...of
. This is primarily due to the overhead of function calls and the iterator protocol.break
or continue
: You cannot break out of the loop or skip to the next iteration directly, which can be limiting in certain scenarios.Pros of for...of:
for...of
loop is considerably faster, as shown in the benchmark, making it preferable for performance-critical tasks.break
and continue
.Cons of for...of:
Browser Compatibility: Both forEach
and for...of
are widely supported in modern browsers. However, older browsers (like Internet Explorer) do not support for...of
, which could be a concern depending on the project requirements.
Array Creation: In both cases, an array of length 1000 is created, but both examples implicitly rely on the fact that the array items are initially undefined
. For illustrative purposes, if initialization with values were required, it could affect performance.
Traditional for loop:
for (var i = 0; i < arr.length; i++) {
var a = arr[i];
}
map:
map
function could be considered.arr.map(v => {
var a = v;
});
forEach with a separate callback:
forEach
, passing a named function may aid in clarity in complex scenarios, though at the cost of performance.In summary, the benchmark highlights a vital performance characterization between two common iteration patterns. For performance-sensitive code, especially with larger datasets, opting for the for...of
loop or a traditional for
loop tends to be the more efficient approach, while forEach
may be used for clarity and chaining where performance isn’t a primary concern.