Nested Angular forEach vs. Native for loop (v92)

Revision 92 of this benchmark created on


Preparation HTML

<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.11/angular.min.js"></script>

Setup

var dataset, i, retObj = {}, stats = [{
        "window": "lifetime",
        "source": "DX",
        "spend": "1642.81",
        "ideal_spend": "2989.86",
        "pace": "43",
        "impressions": "224929",
        "actions": "189",
        "cpm": "3.90",
        "ideal_cpm": "2.81",
        "cpa": "25.82"
      }, {
        "window": "yesterday",
        "source": "DX",
        "spend": "1634.57",
        "ideal_spend": "3276.75",
        "pace": "24",
        "impressions": "24771",
        "actions": "41",
        "cpm": "2.08",
        "ideal_cpm": "3.14",
        "cpa": "16.00"
      }];

Test runner

Ready to run.

Testing in
TestOps/sec
Angular forEach
angular.forEach(stats, function(dataset) {
  console.log(dataset);
  angular.forEach(stats, function(dataset) {
    console.log(dataset);
  });
});
ready
Native For
var i, j;
for (i = stats.length - 1; i >= 0; i--) {
  dataset = stats[i];
  console.log(dataset);
  for (j = stats.length - 1; j >= 0; j--) {
    dataset = stats[j];
    console.log(dataset);
  }
}
ready
Native forEach
stats.forEach(function(dataset) {
  console.log(dataset);
  stats.forEach(function(dataset) {
    console.log(dataset);
  })
})
ready
Native while
var i = 0, j = 0;
while (i < stats.length) {
  dataset = stats[i++];
  console.log(dataset);
  while (j < stats.length) {
    dataset = stats[j++];
    console.log(dataset);
  }
}
ready

Revisions

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