var arr = (new Array(50)).map(() =>{
let len = Math.floor(Math.random() * 1000) + 1;
return (new Array(len)).map((v,i) => {return i});
});
[].concat.apply([], arr);
[].concat(arr);
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
concat apply | |
ES6 spread |
Test name | Executions per second |
---|---|
concat apply | 748861.1 Ops/sec |
ES6 spread | 762296.8 Ops/sec |
I'd be happy to explain what's being tested in the provided benchmark.
The benchmark is testing two different ways of flattening an array of arrays: using the concat.apply()
method and the spread operator (...
) with ES6 syntax.
Test 1: concat apply
This test uses the concat.apply()
method, which was introduced in JavaScript to concatenate arrays. The idea behind this method is to pass an array as a first argument to the concat()
function, followed by an initial value (which can be any array), and then iterate over each element of the initial array, concatenating it with the current result.
The benchmark creates an array of 50 elements, where each inner array has a length between 1 and 1000. It then uses concat.apply()
to flatten this array of arrays into a single array.
Pros and Cons:
Pros:
Cons:
Test 2: ES6 spread
This test uses the spread operator (...
) with ES6 syntax, which was introduced in ECMAScript 2015. The idea behind this syntax is to unpack an array into a new array, creating a shallow copy of its elements.
In this benchmark, the same array of arrays is created as in the previous test, but instead of using concat.apply()
, it uses the spread operator to flatten the inner arrays into a single array.
Pros and Cons:
Pros:
Cons:
Library/External dependencies:
None of the tests rely on external libraries or dependencies. The only "dependency" is the JavaScript engine being used by each browser.
Special JS features/syntax:
Both tests use ES6 syntax, specifically the spread operator (...
) in Test 2. This syntax is specific to modern browsers that support ES6 and later standards.
Other alternatives for flattening arrays of arrays include:
Array.prototype.flat()
: Introduced in ECMAScript 2019, this method provides a more efficient way of flattening arrays than concat.apply()
or the spread operator.for
loops: While not as concise or performant as the other methods, manual iteration can still be an option for older browsers or systems with limited resources.Keep in mind that the choice of flattening method often depends on the specific requirements and constraints of your project. For most modern web applications, ES6 spread (...
) would be a good default choice due to its efficiency and conciseness.