var arr = [].fill('', 0, 1024 * 1024);
const spread = [ [], arr];
const concated = [].concat(arr);
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
spread merge | |
concat |
Test name | Executions per second |
---|---|
spread merge | 9947867.0 Ops/sec |
concat | 10342881.0 Ops/sec |
Let's break down the provided benchmark and explain what's being tested.
Overview
The benchmark is designed to measure the performance of two ways to merge an array in JavaScript: using Array.prototype.concat()
(concat) and using the spread operator (...
) (spread).
Script Preparation Code
The script preparation code initializes an array arr
with 1024 kilobytes of empty values. This creates a large array that will be used for testing.
Benchmark Definition JSON
The benchmark definition JSON contains two test cases:
concat
method as the primary operation to be measured....
) to merge the array.Options Compared
The benchmark compares two options:
Array.prototype.concat()
method to merge the arrays....
) to merge the arrays.Pros and Cons of Each Approach
concat()
method.concat()
method. Also, more modern and widely adopted in JavaScript.Library
There is no library used in this benchmark.
Special JS Feature/Syntax
There are two special features used:
...
): A modern feature introduced in ECMAScript 2015 (ES6) that allows unpacking array elements into a new array.Array.prototype.concat()
: A method introduced in ECMAScript 2009 (ES5) that concatenates two or more arrays.Other Alternatives
Other alternatives for merging arrays include:
Array.prototype.reduce()
and accumulating the resultsmerge
function for array mergingIt's worth noting that the choice of approach (concatenation or spread operator) depends on the specific use case, performance requirements, and compatibility with different browsers and versions.