for loop test

Benchmark created by for loop test on


Setup

var x=0, y=x;

Test runner

Ready to run.

Testing in
TestOps/sec
x inline
for (x=0, y=x; x<100; x++) {
console.log(x);
}
ready
x out
for (; x<100; x++) {
console.log(x);
}
ready

Revisions

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

  • Revision 1: published by for loop test on