function generateTestArray() {
const result = [];
for (let i = 0; i < 1000000; ++i) {
result.push({
a: i,
b: i / 2,
r: 0,
});
}
return result;
}
const array = generateTestArray();
const newMap = new Map();
array.forEach(({a, b}) => {
newMap.set(a, b);
});
const foo = [newMap.entries()];
const array = generateTestArray();
const newMap = new Map();
for(const {a, b} of array) {
newMap.set(a, b);
}
const foo = [newMap.entries()];
const array = generateTestArray();
const newMap = new Map();
array.forEach((x) => {
const {a, b} = x;
newMap.set(a, b);
});
const foo = [newMap.entries()];
const array = generateTestArray();
const newMap = new Map();
for(const x of array) {
const {a, b} = x;
newMap.set(a, b);
}
const foo = [newMap.entries()];
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
.forEach destructured | |
for..of destructured | |
.forEach | |
for..of |
Test name | Executions per second |
---|---|
.forEach destructured | 5.9 Ops/sec |
for..of destructured | 6.1 Ops/sec |
.forEach | 6.3 Ops/sec |
for..of | 6.0 Ops/sec |
Overview of the Benchmark
The provided JSON represents a JavaScript microbenchmark test case created using MeasureThat.net. The benchmark compares the performance of three different approaches for iterating over an array and mapping its elements to a new Map.
Options Compared
The options compared in this benchmark are:
.forEach
with destructuring (.forEach destructured
)for...of
with destructuring ( for..of destructured
).forEach
without destructuring (.forEach
)Pros and Cons of Each Approach
.forEach
with destructuring:const {a, b} = x;
.for...of
with destructuring:.forEach
without destructuring:newMap.set(a, b)
inside the callback function.Library and Purpose
In this benchmark, a Map
object is used as the target data structure. A Map
is a built-in JavaScript object that stores key-value pairs in a way similar to an object. In this case, it's used to store the mapped elements from the array.
Special JS Features or Syntax
None of the tested approaches explicitly use any special JavaScript features or syntax beyond what's standard in modern JavaScript.
Other Considerations
When running this benchmark, consider the following factors:
Alternatives
If you were to modify or extend this benchmark, some alternatives to consider include:
ArrayBuffer
or Set
..map()
or reduce()
.