Toggle navigation
MeasureThat.net
Create a benchmark
Tools
Feedback
FAQ
Register
Log In
Run results for:
Uint8Array vs Uint32Array
Go to the benchmark
Embed
Embed Benchmark Result
Run details:
User agent:
Mozilla/5.0 (X11; Linux x86_64; rv:139.0) Gecko/20100101 Firefox/139.0
Browser:
Firefox 139
Operating system:
Linux
Device Platform:
Desktop
Date tested:
10 months ago
Test name
Executions per second
u8
4965.2 Ops/sec
u32
4334.8 Ops/sec
Tests:
u8
const u8 = new Uint8Array(100000); for (let i = 0; i < u8.length; i++) { u8[i] = Math.round(Math.random() * 256); }
u32
const u32 = new Uint32Array(100000); for (let i = 0; i < u32.length; i++) { u32[i] = Math.round(Math.random() * 256); }