Compare 64 with Array (v9)

Revision 9 of this benchmark created on


Setup

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

Test runner

Ready to run.

Testing in
TestOps/sec
64

for (let i=0; i<elements.length; i++){
		elements[i]
}
ready
undefined

for (let j=0; j<elements.length; j++){
		elements[j]
}
ready

Revisions

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