var arr = Array(10000000).fill(0);
arr.forEach(item => item);
for (const item of arr) item;
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
forEach | |
forOf |
Test name | Executions per second |
---|---|
forEach | 10.7 Ops/sec |
forOf | 8.6 Ops/sec |
Let's dive into the world of JavaScript microbenchmarks and explore what's being tested in this specific benchmark.
What is being tested?
The provided JSON represents a benchmark comparison between two approaches:
forEach
: A traditional, iterative method that uses a callback function to process each item in an array.forOf
: A newer, more modern approach that uses a for-of loop to iterate over the array.What options are compared?
The main options being compared are:
Array(10000000).fill(0)
).Pros and Cons of each approach:
forOf
due to the overhead of function calls and argument passing.Library usage:
There is no explicit library mentioned in the benchmark definition. However, note that the Array.prototype.forEach
method is a part of the ECMAScript standard, and its implementation can vary across browsers and platforms.
Special JS feature or syntax:
No special JavaScript features or syntax are used in this benchmark. The focus is solely on comparing two different iteration approaches.
Other alternatives:
If you're interested in exploring alternative array iteration methods, some examples include:
map()
: A method that creates a new array with the results of applying a provided function to each element.filter()
: A method that creates a new array with only the elements that pass a test implemented by a provided function.reduce()
: A method that applies a function to each element in an array and reduces it to a single output value.These alternatives can offer different trade-offs, such as performance, memory usage, or code readability, depending on your specific use case.