Toggle navigation
MeasureThat
.net
Create a benchmark
Tools
Feedback
Feature Requests
FAQ
Register
Log In
Run results for:
Performance of delete on large arrays
Go to the benchmark
Embed
Embed Benchmark Result
Run details:
User agent:
Mozilla/5.0 (iPhone; CPU iPhone OS 18_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.6 Mobile/15E148 Safari/604.1
Browser:
Mobile Safari 18
Operating system:
iOS 18.6
Device Platform:
Mobile
Date tested:
one year ago
Benchmark engine:
Benchmark.js
50855
2K/s
50856
2K/s
View exact numbers
Test name
Executions per second
✓
50855
2,288 Ops/sec
50856
2,220 Ops/sec
Script Preparation code:
var N0 = 50855;
Tests:
50855
const N = N0; const o = {}; for ( let i = 0; i < N; i++ ) { o[i] = i; } for ( let i = 0; i < N; i++ ) { delete o[i]; }
50856
const N = N0 + 1; const o = {}; for ( let i = 0; i < N; i++ ) { o[i] = i; } for ( let i = 0; i < N; i++ ) { delete o[i]; }