Run details:
Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36
Chrome 83
Windows 7
Desktop
4 years ago
Test name Executions per second
getElementById 583.7 Ops/sec
querySelector 36.1 Ops/sec
HTML Preparation code:
AخA
 
1
<div id="div"></div>
Script Preparation code:
 
div.innerHTML = Array(1000).fill(0).map((el, i) => `<div id="id${i}" class="test${i}"></div>`)
Tests:
  • getElementById

     
    Array(1000).fill(0).map((el, i) =>  document.getElementById(`id${i}`).className)
  • querySelector

     
    Array(1000).fill(0).map((el, i) =>  document.querySelector(`#id${i}`).className)