Run details:
Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0
Firefox 133
Windows
Desktop
4 months ago
Test name Executions per second
querySelectorAll 46251.3 Ops/sec
getElementsByClassName 370436.6 Ops/sec
HTML Preparation code:
AخA
 
1
<div class="test"></div>
Tests:
  • querySelectorAll

     
    document.querySelectorAll(".test").forEach(x=>x.style.color='red')
  • getElementsByClassName

     
    Array.from(document.getElementsByClassName(".test")).forEach(x=>x.style.color='red')