Fast Array Foreach (v109)

Revision 109 of this benchmark created on


Preparation HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/2.4.1/lodash.min.js"></script>

Setup

// Populate the base array
      var arr = [];
      for (var i = 0; i < 1000; i++) {
        arr[i] = i;
      }
    
      function someFn(i) {
        return i * 3 * 8;
      }

Test runner

Ready to run.

Testing in
TestOps/sec
Array.ForEach
arr.forEach(someFn);
ready
For
for (var i = 0, len = arr.length; i < len; i++) {
(function() {someFn(arr[i]);})();
}
ready
lodash
_.each(arr, someFn);
ready

Revisions

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