Slow loop (v10)

Revision 10 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
for (var i = 0, len = arr.length; i < len; i++) {
  highest = i;
}
ready
"Fastest" loop
var i = arr.length;
while (i-- > 0) {
  highest = i;
}
ready

Revisions

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