Foo

Benchmark created on


Test runner

Ready to run.

Testing in
TestOps/sec
i++
let sum = 0;
for (let i = 0; i < 10_000; i++) {
	sum += i;
}
console.log(sum);
ready
++i
let sum = 0;
for (let i = 0; i < 10_000; ++i) {
    sum += i;
}
console.log(sum);
ready

Revisions

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