jQuery each2 plugin vs jQuery core .each method (v18)

Revision 18 of this benchmark created by Jason DiMeo on


Description

Basically, if you're going to do $(this) inside an .each loop, you should consider using the jQuery each2 plugin instead, because it's specifically optimized for this extremely common use case!

Again, not sure why .each$ is that much faster than Ben's implementation. I am using a for loop instead of while.

Preparation HTML

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>

<!-- the plugin -->
<script src="http://github.com/cowboy/jquery-misc/raw/master/jquery.ba-each2.js"></script>

<script>
  jQuery.fn.extend({
    each$: function(fn) {
      var $elem = jQuery([1]);
      try {
        for (var i = 0; i < this.length; i++) {
          if (fn.call(jQuery.context = $elem[0] = this[i], i, $elem) === false) { break; }
        }
      } finally {
        delete $elem[0];
      }
      return this;
    }
  });

  // Create a whole bunch of elements for iteration.
  var elems = $('<div/>').append(Array(1000).join('<span/>')).children();
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
jQuery each2 plugin
elems.each2(function(i, jq) {
 jq; // Use at will!
 jq; // No performance penalty.
 jq; // No performance penalty.
});
ready
jQuery core .each method
elems.each(function(i, elem) {
 var jq = $(this); // This is the best we can do here.
 jq; // No performance penalty.
 jq; // No performance penalty.
 jq; // No performance penalty.
});
ready
jQuery core .each, $(this) x 2
elems.each(function(i, elem) {
 $(this); // Really inefficient code, you know,
 $(this); // like you see all over the web...
});
ready
jQuery core .each, $(this) x 4
elems.each(function(i, elem) {
 $(this); // Really inefficient code, you know,
 $(this); // like you see all over the web...
 $(this); // Etc...
 $(this); // Etc...
});
ready
jQuery core .each, $(this) x 10
elems.each(function(i, elem) {
 for (var i = 0; i < 10; i++) {
  $(this); // Let's see the cost of doing $(this) 10x.
 }
});
ready
Putting things into perspective...
elems.each2(function(i, jq) {
 // This should give some sense of how disproportionate the
 // $(this) savings are compared to actual DOM manipulations.
 jq.addClass('foo');
});
ready
jQuery .each$ plugin
elems.each$(function(i, $elem) {
 $elem; // Use at will!
 $elem; // No performance penalty.
 $elem; // No performance penalty.
});
ready
Putting things into perspective... with .each$ plugin
elems.each$(function(i, $elem) {
 // This should give some sense of how disproportionate the
 // $(this) savings are compared to actual DOM manipulations.
 $elem.addClass('foo');
});
ready
Putting things into perspective... with jQuery core .each
elems.each(function(i, elem) {
 var $elem = jQuery(this);
 // Should be super slow!
 $elem.addClass('foo');
});
ready

Revisions

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