Run details:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36
Chrome 75
Windows
Desktop
5 years ago
Test name Executions per second
getElementById 1961.3 Ops/sec
querySelector 124.2 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)