Toggle navigation
MeasureThat.net
Create a benchmark
Tools
Feedback
FAQ
Register
Log In
Run results for:
Clone Array - 07/02/2024
Go to the benchmark
Embed
Embed Benchmark Result
Run details:
User agent:
Mozilla/5.0 (iPhone; CPU iPhone OS 15_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Mobile/15E148 Safari/604.1
Browser:
Mobile Safari 15
Operating system:
iOS 15.5
Device Platform:
Mobile
Date tested:
2 years ago
Test name
Executions per second
Spread operator clone
8371912.0 Ops/sec
Structured clone
1546211.5 Ops/sec
Script Preparation code:
var arr1 = [1, 2, 3, , 5, 6, 7, 7, 8, 9, 10]; var arrCopy = null;
Tests:
Spread operator clone
arrCopy = [...arr1];
Structured clone
arrCopy = structuredClone(arr1);