<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<link rel="stylesheet" href="style.min.css" type="text/css">
<link rel="stylesheet" href="style.min.css" type="text/css">
<link rel="stylesheet" href="style.min.css" type="text/css">
<link rel="stylesheet" href="style.min.css" type="text/css">
<link rel="stylesheet" href="style.min.css" type="text/css">
var linkEls = document.querySelectorAll('link[href*=".min.css"]');
[].forEach.call(linkEls,function(el){
console.log(el);
});
var linkEls = $('.class');
for(var i = 0; i < linkEls.length; i++) {
var el = linkEls[i];
console.log(el);
}
$('link[href*=".min.css"]').each(function(){
console.log(this);
});
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
forEach (Native) | |
for (Native) | |
each (jQuery) |
Test name | Executions per second |
---|---|
forEach (Native) | 71847.9 Ops/sec |
for (Native) | 2209158.2 Ops/sec |
each (jQuery) | 51988.6 Ops/sec |
Let's dive into the world of JavaScript microbenchmarks on MeasureThat.net.
The provided JSON represents a benchmark test that compares three approaches: native for
, native forEach
, and jQuery's each
. We'll break down each option, its pros and cons, and other considerations.
Native for
This approach uses a traditional for
loop to iterate over the elements:
var linkEls = document.querySelectorAll('link[href*=\".min.css\"]');
[].forEach.call(linkEls, function(el) {
console.log(el);
});
Pros:
for
loops are generally faster than their jQuery counterparts.Cons:
forEach.call()
method is needed, which can make the code harder to read.Native forEach
This approach uses the built-in forEach
method:
var linkEls = document.querySelectorAll('link[href*=\".min.css\"]');
[].forEach.call(linkEls, function(el) {
console.log(el);
});
Pros:
forEach
method makes the code more readable and easier to maintain.Cons:
forEach.call()
method adds a small overhead compared to native for
loops.forEach
method.jQuery each
This approach uses jQuery's each
method:
$('#link[href*=\".min.css\"]').each(function() {
console.log(this);
});
Pros:
each
method is supported by most modern browsers.Cons:
Library and framework considerations
In this benchmark, the library used is jQuery. This means that the test results are specifically optimized for jQuery versions 3.x and later. If you were to run this benchmark with an earlier version of jQuery or a different library, the results might not be directly comparable.
Special JavaScript features
There are no special JavaScript features or syntaxes being tested in this benchmark. The focus is on comparing three common iteration approaches: native for
, native forEach
, and jQuery's each
.
In summary:
for
loops offer performance and simplicity, but with more verbose code.forEach
loops provide conciseness and flexibility, but with some overhead.each
method offers convenience and cross-browser compatibility, but with additional complexity and potential performance impact.If you're looking for alternatives to these approaches, consider:
Keep in mind that the choice of iteration approach depends on your project's specific requirements, performance constraints, and personal preference.