querySelector vs getElementsByTagName (v99)

Revision 99 of this benchmark created on


Preparation HTML

<div>
  <ul>
    <li><a href="#">item 1</a></li>
    <li><a href="#">item 2</a></li>
    <li><a href="#">item 3</a></li>
  </ul>
</div>

Test runner

Ready to run.

Testing in
TestOps/sec
querySelector
var node = document.querySelector('a')
ready
getElementsByTagName
var node = document.getElementsByTagName('a')[0]
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.