var array = Array.from({ length: 100 }).map((val, i) => i);
var newArray = [array];
var newArray = array.slice();
var newArray = array.splice();
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
spread | |
slice | |
splice |
Test name | Executions per second |
---|---|
spread | 3717745.8 Ops/sec |
slice | 4324035.0 Ops/sec |
splice | 8077417.0 Ops/sec |
I'll break down the benchmark and explain what's being tested, compared options, pros/cons, library usage, special JS features, and alternative approaches.
Benchmark Overview
The test compares three ways to create a new array from an existing one:
...
): Using the spread operator to copy elements from the original array.array.slice()
): Creating a shallow copy of the original array using slice
.array.splice()
): Modifying the original array and then creating a new one with the modified elements.Library Usage
There is no explicit library mentioned in the benchmark definition or test cases. However, it's worth noting that some browsers might have additional libraries or extensions that could influence the results, but this is not relevant to the specific test cases presented.
Special JS Features
None of the special JavaScript features are explicitly mentioned or used in the benchmark. The tests focus on basic array operations using standard syntax.
Options Comparison
Here's a brief overview of each option:
...
):array.slice()
):array.splice()
):Benchmark Results
The latest benchmark results show that:
...
): The fastest execution rate (8077417.0 executions/second).array.slice()
): Middle-paced execution rate (4324035.0 executions/second).array.splice()
): Slowest execution rate (3717745.75 executions/second).Alternative Approaches
Other approaches to create a new array from an existing one include:
concat()
: The older, more traditional way to concatenate arrays.Array.from()
: A modern method to create an array from an iterable, which might be faster than the spread operator in some cases.However, these alternatives are not tested in this specific benchmark, and their performance would depend on various factors, such as the browser's implementation, the size of the input arrays, and other optimizations.