jQuery.each vs. alternatives (v79)

Revision 79 of this benchmark created on


Description

Each comparisons

Preparation HTML

<script src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script>
  var a = $('*').get(),
      e;
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
jQuery.each
$.each(a, function() {
 e = $(this);
});
ready
for loop
var len = a.length;
for (var i = 0; i < len; i++) {
 e = $(a[i]);
};
ready
while loop
var i = a.length - 1;

while (e = a[i--]) {
 $(e)
};
ready
alternative for loop
for (var i in a) {
 e = $(a[i]);
};
ready
reverse for
for (var i = a.length; i--;) {
 e = $(a[i]);
}
ready
While 2
var i = a.length;
while (i--) {
 e = $(a[i]);
}
ready
jQuery.fn.each
$('*').each(function(i){
 e = $(this);
});
ready

Revisions

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