var params = Array(1000);
var array = Array(1000);
var other = array.concat(params);
var params = Array(1000);
var array = Array(1000);
var other = [ array, params ]
var params = Array(1000);
var array = Array(1000);
var other = array.push(params);
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Array.prototype.concat | |
spread operator | |
Push |
Test name | Executions per second |
---|---|
Array.prototype.concat | 861902.5 Ops/sec |
spread operator | 188794.8 Ops/sec |
Push | 317960.3 Ops/sec |
The benchmark you provided is designed to compare three different methods in JavaScript for combining arrays: the traditional Array.prototype.concat
method, the ES6 spread operator (...
), and the Array.prototype.push
method. Each option has its own methodology for appending or merging arrays, and the benchmark measures the performance of each approach in terms of executions per second.
Array.prototype.concat
Spread Operator (...
)
concat
, it also creates a new array, which could be less memory-efficient than modifying an existing array directly if performance is a critical concern.Array.prototype.push
apply
or the spread operator for multiple arguments.The benchmark results indicate the number of executions per second achieved by each method in Chrome 124 on macOS:
The choice between these methods often depends on the specific requirements of your application. If immutability and readability are priorities, concat
or the spread operator might be preferable. If performance is essential and array mutation is acceptable, then push
could be a better option.
Other alternatives to these methods could include libraries like Lodash, which offers utilities for manipulating arrays, or native JavaScript functions like Array.from()
for converting array-like objects to arrays. However, they're not specified in this benchmark. Using a library like Lodash can also provide enhanced features for more complex array manipulations but may introduce additional overhead due to the library's size and complexity.
In summary, this benchmark effectively illustrates the performance characteristics of different array combination techniques in JavaScript and emphasizes the trade-offs associated with each method.