for vs array-foreach (v7)

Revision 7 of this benchmark created on


Preparation HTML

<script src="https://raw.github.com/documentcloud/underscore/master/underscore-min.js" type="text/javascript"></script>
<script>
  //save underscore
  window.us = _;
  _ = null;
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/1.0.1/lodash.min.js"></script>

Setup

var array = Array(31).join('x').split('');
    
    function callback(value, index, object) {
      return value + index;
    }
    
    function customForEach(array, callback, thisArg) {
      var fn = callback,
          index = -1,
          length = array.length;
    
      while (++index < length) {
        if (callback(array[index], index, array) === false) {
          break;
        }
      }
      return array;
    }

Test runner

Ready to run.

Testing in
TestOps/sec
custom forEach
customForEach(array, callback);
ready
Array#forEach
array.forEach(callback);
ready
underscore forEach
us.each(array, callback);
ready
lo-dash forEach
_.each(array, callback);
ready

Revisions

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