Toggle navigation
MeasureThat
.net
Create a benchmark
Tools
Feedback
FAQ
Register
Log In
Run results for:
Clone and append to array
Compare the new toSpliced() method, the slice() method and the spread operator in cloning and appending an element to array.
Go to the benchmark
Embed
Embed Benchmark Result
Run details:
User agent:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36
Browser:
Chrome 126
Operating system:
Windows
Device Platform:
Desktop
Date tested:
2 years ago
Array.prototype.slice + Array.prototype.push
13.1M/s
Spread operator
12.6M/s
Array.prototype.toSpliced
7.6M/s
View exact numbers
Test name
Executions per second
✓
Array.prototype.slice + Array.prototype.push
13,097,564 Ops/sec
Spread operator
12,623,018 Ops/sec
Array.prototype.toSpliced
7,560,230 Ops/sec
Script Preparation code:
var array = ["hello", true, 7]; var newElement = "new";
Tests:
Array.prototype.toSpliced
const newArray = array.toSpliced(array.length, 0, newElement);
Spread operator
const newArray = [...array, newElement];
Array.prototype.slice + Array.prototype.push
const newArray = array.slice(); newArray.push(newElement);