HTML Preparation code:
AخA
 
1
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
2
<link rel="stylesheet" href="style.min.css" type="text/css">
3
<link rel="stylesheet" href="style.min.css" type="text/css">
4
<link rel="stylesheet" href="style.min.css" type="text/css">
5
<link rel="stylesheet" href="style.min.css" type="text/css">
6
<link rel="stylesheet" href="style.min.css" type="text/css">
Tests:
  • forEach (Native)

     
    var linkEls = document.querySelectorAll('link[href*=".min.css"]');
    [].forEach.call(linkEls,function(el){
      console.log(el);
    });
  • for (Native)

     
    var linkEls = document.querySelectorAll('link[href*=".min.css"]');
    for(var i = 0; i < linkEls.length; i++) {
        var el = linkEls[i];
        console.log(el);
    }
  • each (jQuery)

     
    $('link[href*=".min.css"]').each(function(){
      console.log(this);
    });
  • For of (ES6)

     
    let linkEls = document.querySelectorAll('link[href*=".min.css"]');
    for (var el of linkEls) {
      console.log(el);
    }
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    forEach (Native)
    for (Native)
    each (jQuery)
    For of (ES6)

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 2 years ago)
Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36
Chrome 109 on Linux
View result in a separate tab
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