var in loops (v2)

Revision 2 of this benchmark created on


Test runner

Ready to run.

Testing in
TestOps/sec
outside
var foo;
for (var i = 0; i < 10000; i++) {
  foo = 1;
}
ready
inside
for (var foo, i = 0; i < 10000; i++) {
  foo = 1;
}
ready

Revisions

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