[ 1, 2 ].concat([ "hello", true, 7 ]);
[ 1, 2 ], [ "hello", true, 7 ] ] [
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Array.prototype.concat | |
spread operator |
Test name | Executions per second |
---|---|
Array.prototype.concat | 6794179.5 Ops/sec |
spread operator | 20755648.0 Ops/sec |
Let's break down the benchmark and explain what's being tested.
Benchmark Overview
The benchmark compares two ways to concatenate arrays in JavaScript: Array.prototype.concat
(traditional method) and the spread operator (...
).
Options Compared
The options being compared are:
Array.prototype.concat()
to concatenate two arrays....
) to concatenate two arrays.Pros and Cons of Each Approach
Library Usage
In this benchmark, no specific libraries are used beyond the built-in Array
prototype and the JavaScript language itself.
Special JS Features/Syntax
The spread operator (...
) is a relatively new feature introduced in ECMAScript 2015 (ES6). It allows for more concise array concatenation by spreading elements into a new array. This feature was widely adopted after its introduction, making it a part of modern JavaScript development workflows.
Other Considerations
This benchmark focuses on the performance difference between two common methods of array concatenation in JavaScript. By comparing these options, the goal is to provide insight into which method is faster and more efficient for developers writing JavaScript code.
Alternatives
Other alternatives for array concatenation might include:
Array.prototype.push()
with multiple arguments.reduce()
method or other functional programming techniques to concatenate arrays.These alternatives may have different performance characteristics, code readability trade-offs, and developer familiarity factors compared to the traditional concat() and spread operator approaches tested in this benchmark.