Toggle navigation
MeasureThat
.net
Create a benchmark
Tools
Feedback
FAQ
Register
Log In
Run results for:
Array vs TypedArray read performance
Go to the benchmark
Embed
Embed Benchmark Result
Run details:
User agent:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:150.0) Gecko/20100101 Firefox/150.0
Browser:
Firefox 150
Operating system:
Mac OS X 10.15
Device Platform:
Desktop
Date tested:
3 months ago
TypedArray write
17K/s
Array write
12K/s
View exact numbers
Test name
Executions per second
✓
TypedArray write
17,436 Ops/sec
Array write
11,597 Ops/sec
Tests:
Array write
var array = new Array(100000) let x for (let i=0; i<array.length; i++) { x = array[i] }
TypedArray write
var typedArray = new Uint8Array(100000) let x for (let i=0; i<typedArray.length; i++) { x = typedArray[i] }