<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);
});
let linkEls = document.querySelectorAll('link[href*=".min.css"]');
for (var el of linkEls) {
console.log(el);
}
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
forEach (Native) | |
for (Native) | |
each (jQuery) | |
For of (ES6) |
Test name | Executions per second |
---|---|
forEach (Native) | 16530.7 Ops/sec |
for (Native) | 16961.1 Ops/sec |
each (jQuery) | 2632.5 Ops/sec |
For of (ES6) | 3086.7 Ops/sec |
Let's dive into the world of JavaScript microbenchmarks on MeasureThat.net.
Benchmark Definition
The benchmark defines four test cases:
forEach (Native)
: Uses the native forEach
method to iterate over an array.for (Native)
: Uses a traditional for
loop to iterate over an array.each (jQuery)
: Uses jQuery's each
method to iterate over an array.For of (ES6)
: Uses the newer for...of
loop syntax to iterate over an array.What is tested
In this benchmark, we're measuring the execution performance of each iteration method. The test case generates an array of link elements using document.querySelectorAll
, and then iterates over it, logging each element to the console.
Options compared
The benchmark compares the following options:
forEach
methodfor
loopeach
methodfor...of
loop syntax (ES6)Pros and Cons of each approach
forEach
method:for
loop:forEach
, especially for large datasets.each
method:for...of
loop syntax (ES6):Library usage
The benchmark uses jQuery's each
method, which is a convenient but potentially overkill solution. While the test case only requires iterating over an array of link elements, using jQuery introduces additional overhead and may not be necessary for this specific use case.
Special JS feature/syntax
There are no special JavaScript features or syntaxes used in this benchmark that require explanation.
Other alternatives
If you wanted to try alternative iteration methods, here are a few options:
map
function: Instead of iterating over an array, you could use the map
function to create a new array with transformed elements.reduce
function: You could also use the reduce
function to iterate over an array and accumulate values in an accumulator.In conclusion, this benchmark provides a useful comparison of different iteration methods in JavaScript. By choosing the right approach for your specific use case, you can optimize performance and write more efficient code.