Angular forEach vs. Native for loop (v12)

Revision 12 of this benchmark created on


Preparation HTML

<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.13/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) {
  if (dataset.window && dataset.window === 'lifetime') {
    delete dataset.window;
    retObj = dataset;
  }
});
ready
Native For
for (i = stats.length - 1; i >= 0; i--) {
  dataset = stats[i];
  if (dataset.window && dataset.window === 'lifetime') {
    delete dataset.window;
    retObj = dataset;
    break;
  }
}
ready
Native forEach
stats.forEach(function(dataset) {
  if (dataset.window && dataset.window === 'lifetime') {
    delete dataset.window;
    retObj = dataset;
  }
})
ready

Revisions

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