should we initialize variables before loops (v33)

Revision 33 of this benchmark created on


Test runner

Ready to run.

Testing in
TestOps/sec
parsefloat with round
for (var i = 0; i < 1000; i++) {
  var x = i;
}
ready
without
var x = 0;
for (var i = 0; i < 1000; i++) {
  x = i;
}
ready

Revisions

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