getElementById vs. querySelector (v43)

Revision 43 of this benchmark created on


Description

Compare the speed of getElementById to querySelector

Preparation HTML

<p id="foo">Foo</p>
<p id="bar">Bar</p>
<p id="baz">Baz</p>

Setup

var select = function(type, query){
      if (type === 'id')
        return document.getElementById(query);
      else
        return document.querySelector(query);
    };

Test runner

Ready to run.

Testing in
TestOps/sec
getElementById
var bar = document.getElementById("bar");
ready
querySelector
var bar = document.querySelector("#bar");
ready
mapping to getElementById
var bar = select('id', 'bar');
ready

Revisions

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