var a = Array.from({ length: 2000 }, (_, index) => index);
var b = Array.from({ length: 2000 }, (_, index) => 2000 - index);
const spread = [a, b];
const concat = a.concat(b);
const concatEmpty = [].concat(a).concat(b);
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Spread | |
Concat | |
Concat from empty |
Test name | Executions per second |
---|---|
Spread | 51575.7 Ops/sec |
Concat | 300218.8 Ops/sec |
Concat from empty | 225175.7 Ops/sec |
I'll explain what's tested in the provided JSON, compare different approaches, and provide pros and cons of each.
Benchmark Definition:
The benchmark tests how fast JavaScript can spread two arrays (a
and b
) together using the spread operator (...
). There are three test cases:
concat()
method.Approaches:
...
)concat()
methodconcat()
method.concat()
from emptyconcat()
method, and then concatenates the resulting arrays together.Other Considerations:
concat()
method approach.Library and Special JS Feature:
There is no external library used in this benchmark. However, it does utilize a feature of modern JavaScript: Rest parameter syntax (...
), which allows for spreading arrays or objects into new expressions.
Now, let's take a look at the alternative approaches:
Array.prototype.push()
: This approach would involve using the push()
method to add elements from one array to another. While this approach is also efficient, it may not be as well-supported in older browsers.Array.prototype.forEach()
: This approach would involve iterating over each element in the original arrays and adding them to a new array using the forEach()
method. However, this approach is likely to be less efficient due to the overhead of the callback function.Keep in mind that these alternative approaches may not be supported by older browsers or have different performance characteristics compared to the original spread operator approach.