var map = new Map(Array.from({ length: 5000 }, (_, i) => [String(i + 1), { id: String(i + 1) }]));
const result = Array.from(map.values());
console.log(result);
const result = [map.values()];
console.log(result);
const result = [];
for (const v of map.values()) {
result.push(v);
}
console.log(result);
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Array.from | |
spread | |
push |
Test name | Executions per second |
---|---|
Array.from | 454.9 Ops/sec |
spread | 448.8 Ops/sec |
push | 444.7 Ops/sec |
I'd be happy to help explain the JavaScript microbenchmark on MeasureThat.net.
Benchmark Overview
The Iterator to Array Benchmark measures how fast three different approaches are to convert an iterator (in this case, a Map) into an array in JavaScript.
Options Compared
The benchmark compares three different approaches:
...
): This syntax spreads the elements of an iterator (in this case, a Map) into separate arguments to a function, creating a new array.for...of
loop to iterate over the values of the iterator and push them onto an array.Pros and Cons
Here's a brief summary of each approach:
Map
, which is used in this benchmark)...
): Pros:Map
Array.from
due to the overhead of creating a new arrayspread
for very large datasetsArray.from
Library and Special JS Features
In this benchmark, the Map object is used as an iterator. The Map object is a built-in JavaScript data structure that stores key-value pairs.
The spread operator (...
) is also a built-in JavaScript syntax feature. It's not a library, but rather a language construct that allows you to create new arrays by spreading the elements of an existing array or iterable.
Other Considerations
When choosing between these approaches, consider the following factors:
Array.from
might be the best choice. For larger datasets, the manual loop might be faster.Array.from
is likely a better option due to its concise and intuitive syntax.Alternatives
If you're interested in exploring alternative approaches, here are some options:
Array.from
, but uses a different algorithm.Array.from
. It provides a similar API, but with some differences in behavior.I hope this explanation helps!