Declaring variables inside loops

Benchmark created by Shane O'Sullivan on


Description

Tests whether declaring a variable inside a loop, rather than declaring outside and just assigning values, is more performant

Test runner

Ready to run.

Testing in
TestOps/sec
Declare in a loop
for (var i = 0; i < 1000; i++) {
  var x = 1;
  var y = 2;
  var z = {};
  var a = {};
}
ready
Declare outside loop
var x, y, z, a, i;
for (i = 0; i < 1000; i++) {
  x = 1;
  y = 2;
  z = {};
  a = {};
}
ready

Revisions

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