test

Benchmark created on


Test runner

Ready to run.

Testing in
TestOps/sec
test1
const state = new Uint8Array(10000000);
state.fill(1);
ready
test2
const stateSize = 10000000;
const state = new Uint8Array(stateSize);
for (let i = 0; i < stateSize; i++)
{
	state[i] = 1;
}
ready

Revisions

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