<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 = document.querySelectorAll('link[href*=".min.css"]');
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) | 16235.0 Ops/sec |
for (Native) | 16620.3 Ops/sec |
each (jQuery) | 14370.6 Ops/sec |
Let's dive into the world of JavaScript microbenchmarks on MeasureThat.net.
The provided benchmark definition json represents a comparison of three methods to iterate over an HTML collection of link elements: forEach
(native), for
(native), and each
(jQuery). The goal is to determine which approach is the fastest in this specific scenario.
Options Compared
We have three options:
for
loop to iterate over each element in the collection.each
function to iterate over each element in the collection.Pros and Cons
Here's a brief overview of each approach:
forEach
, as it allows for direct access to the elements being iterated over.Library and Purpose
In this case, the each
method is part of the jQuery library, which provides a convenient way to manipulate HTML documents and elements. The $.each
function takes two arguments: the first is an array-like object (in this case, a collection of link elements), and the second is a callback function that will be executed for each element in the collection.
Special JS Features
None are explicitly mentioned in the benchmark definition or results.
Benchmark Preparation Code
The provided HTML preparation code includes links to external CSS files, which are not necessary for the benchmark itself. The script preparation code is empty, indicating that no custom JavaScript functions or variables are being tested.
Other Alternatives
In addition to the three methods listed above, other iteration approaches could be used in this scenario, such as:
Array.prototype.forEach
(ECMAScript standard)each
functionHowever, these alternatives are not part of the original benchmark definition and would require additional modifications to the test cases.
In Summary
The MeasureThat.net benchmark compares three methods for iterating over an HTML collection: forEach
(native), for
(native), and each
(jQuery). Each approach has its pros and cons, with foreach (Native)
being easy to understand but potentially less optimized, for (Native)
offering more control but requiring more verbose code, and each (jQuery)
providing a convenient, performance-optimized solution limited to use with jQuery.