For Loop (v80)

Revision 80 of this benchmark created on


Preparation HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.4.4/underscore-min.js">
</script>
<script>
  var underscore = _.noConflict();
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/1.0.0-rc.3/lodash.min.js">
</script>
<script>
  var lodash = _.noConflict();
</script>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script>
  var arr = underscore.range(1,1000);
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
while loop that imitates a for loop
var i = 0;
while (i < arr.length) {
  arr[i]=i;
  i++;
};
ready
while loop that imitates a for loop, caching the length
var i = 0,
    len = arr.length;
while (i < len) {
  arr[i]=i;
  i++;
};
ready
Reverse while loop
var i = arr.length;
while (i--) {
  arr[i]=i;
};
ready
Reverse while loop without implicit ToBoolean
var i = arr.length;
while (i-- > 0) {
  arr[i]=i;
};
ready
Reverse do … while loop
var i = arr.length;
do {
  arr[i]=i;
} while (i--);
ready
Reverse for loop
for (var i = arr.length; i--;) {
  arr[i]=i;
};
ready
Standard Loop
var i
for (i = 0; i < arr.length; i++) {
  arr[i]=i
}
ready

Revisions

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