const arr = new Array(100000).fill(0).map(Math.random);
arr.slice();
const arr = new Array(100000).fill(0).map(Math.random);
[arr];
const arr = new Array(100000).fill(0).map(Math.random);
const identity = a => a;
arr.map(identity);
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Slice | |
Spread | |
Map |
Test name | Executions per second |
---|---|
Slice | 518.5 Ops/sec |
Spread | 493.9 Ops/sec |
Map | 240.1 Ops/sec |
Benchmark Explanation
The provided benchmark measures the performance of three different methods for cloning an array in JavaScript: slice()
, spread operator ([...]
), and map()
.
In the test cases, a large array with 100,000 elements is created using new Array(100000).fill(0).map(Math.random)
. Then, each method is used to create a new copy of this array.
Methods Comparison
arr.slice()
.Object.prototype.toString()
would return object Object
, not just the element value).[...]
) to create a new array by spreading the elements of the original array.slice()
for large arrays.arr.map(identity)
, where identity
is an anonymous function that returns each element as it is.Library and Special JS Features
None of the test cases use any external libraries. However, they do use some standard JavaScript features:
Math.random()
: used to generate random numbers in each test case.const
keyword: used to declare constant variables (e.g., const arr = ...;
, const identity = a => a;
).a => a
): used in the Map
test case.Other Alternatives
In addition to these three methods, there are other ways to clone an array in JavaScript:
Array.prototype.slice.call()
: This method is similar to using the spread operator but may be slower for very large arrays.Array.prototype.reduce()
: This method can be used to create a new array by reducing the original array into smaller parts, but it's not typically faster than the three methods being compared here.Keep in mind that these alternative methods might have different performance characteristics depending on the specific use case and environment.