Toggle navigation
MeasureThat
.net
Create a benchmark
Tools
Feedback
Feature Requests
FAQ
Register
Log In
Run results for:
List splice multiple
Go to the benchmark
Embed
Embed Benchmark Result
Run details:
User agent:
Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Mobile Safari/537.36
Browser:
Chrome Mobile 120
Operating system:
Android
Device Platform:
Mobile
Date tested:
2 years ago
Benchmark engine:
Benchmark.js
splice
213K/s
append
184K/s
Splice single
163K/s
View exact numbers
Test name
Executions per second
✓
splice
212,603 Ops/sec
append
183,731 Ops/sec
Splice single
162,936 Ops/sec
Script Preparation code:
l = 123;
Tests:
append
a = Array(0); a.push(4); a.push(3);
splice
a = Array(0); a.splice(0,0,4,3);
Splice single
a = Array(0); a.splice(0,0,4); a.splice(0,0,3);