Run details:
Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:135.0) Gecko/20100101 Firefox/135.0
Firefox 135
Windows
Desktop
one month ago
Test name Executions per second
querySelectorAll 1308928.2 Ops/sec
getElementsByClassName 6789869.0 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')