Test case details

Preparation Code

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

Test cases

Test #1

var a = b.get(); jQuery.each(b, function() {  e = $(this); });

Test #2

var a = b.get(),     len = a.length; for (var i = 0; i < len; i++) {  e = $(a[i]); };

Test #3

var a = b.get(),     i = a.length - 1; while (e = a[i--]) {  $(e) };

Test #4

var a = b.get(); for (var i in a) {  e = $(a[i]); };

Test #5

var a = b.get(); for (var i = a.length; i--;) {  e = $(a[i]); }

Test #6

var a = b.get(),     i = a.length; while (i--) {  e = $(a[i]); }

Test #7

b.each(function(i){  e = $(this); });

Test #8

$.each(b, function() {  e = $(this); });