HTML Preparation code:
AخA
 
1
<ul>
2
</ul>
Script Preparation code:
x
 
var ul = document.querySelector('ul');
for(var i=0;i<1000;i++) {
  ul.appendChild(document.createElement('li'));
}
var listItems = document.querySelectorAll('li');
Tests:
  • Array.from on NodeList

     
    var other = Array.from(listItems);
  • Spread on NodeList

     
    var other = [...listItems];
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Array.from on NodeList
    Spread on NodeList

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: one year ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1823.43
Chrome 114 on Windows
View result in a separate tab
Test name Executions per second
Array.from on NodeList 3296.3 Ops/sec
Spread on NodeList 3165.8 Ops/sec