Slow loop (v5)

Revision 5 of this benchmark created on


Description

Comparing the "slow loop" argument from http://www.sitepoint.com/google-closure-how-not-to-write-javascript/

Preparation HTML

<script>
  var arr = [];
  for (var i = 0; i < 10000; i++) {
    arr.push(i);
  }
  
  var highest = -1;
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
"Slow" loop
for (var i = 0; i < arr.length; i++) {
  highest = i;
}
ready
"Fast" loop
len = arr.length;
var i = 0;

for (i < len; i++) {
  highest = i;
}
ready
"Fastest" loop
var i = arr.length;
while (i--) {
  lowest = i;
}
ready

Revisions

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