Compare 64 with Array (v2)

Revision 2 of this benchmark created on


Setup

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

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.