Compare 64 with Array

Benchmark created on


Setup

const elements = new Float64Array(10e6);
const elements2 = new Array(10e6)

Test runner

Ready to run.

Testing in
TestOps/sec
64

for (const el of elements){
		
}
ready
undefined

for (const el of elements2){
	
}
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.