jQuery.fn.each vs. jQuery.fn.quickEach (v64)

Revision 64 of this benchmark created by roviury on


Description

The quickEach method will pass a non-unique jQuery instance to the callback meaning that there will be no need to instantiate a fresh jQuery instance on each iteration. Most of the slow-down inherent in jQuery’s native iterator method (each) is the constant need to have access to jQuery’s methods, and so most developers see constructing multiple instances as no issue… A better approach would be quickEach.

Preparation HTML

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js">
</script>
<script>
  var a = $('<div/>').append(Array(100).join('<a></a>')).find('a');

  jQuery.fn.quickEach = (function(jq) {
    return function(c) {
      var i = -1,
          el, len = this.length;
      try {
        while (++i < len && (el = jq[0] = this[i]) && c.call(jq, i, el) !== false);
      } catch (e) {
        throw e;
      } finally {
        delete jq[0];
      }
      return this;
    };
  })(jQuery());
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
.each()
a.each(function() {
  $(this);
});
ready
.quickEach()
a.quickEach(function() {
  this; // jQuery object
});
ready

Revisions

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