Toggle navigation
MeasureThat
.net
Create a benchmark
Tools
Feedback
FAQ
Register
Log In
Run results for:
array vs Float64Array (small) 2
Go to the benchmark
Embed
Embed Benchmark Result
Run details:
User agent:
Mozilla/5.0 (X11; Linux x86_64; rv:128.0) Gecko/20100101 Firefox/128.0
Browser:
Firefox 128
Operating system:
Linux
Device Platform:
Desktop
Date tested:
one year ago
typedArray sort
672K/s
array sort
44K/s
View exact numbers
Test name
Executions per second
✓
typedArray sort
671,560 Ops/sec
array sort
43,862 Ops/sec
Script Preparation code:
var a = [...Array(100)].map(_ => Math.random()); var ta = (new Float64Array(100)).map(_ => Math.random());
Tests:
array sort
a.sort();
typedArray sort
ta.sort();