Compare 64 with Array (v4)

Revision 4 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 < elements2.length; j++){
	elements2[j]
}
ready

Revisions

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