I was thinking about this today and I realized I don't have a clear picture here. Here are some statements I think to be true (please correct me if I'm wrong): the DOM is a collection of interfaces specified by W3C. when parsing HTML source code, the browser creates a DOM tree which has nodes that implement DOM interfaces. the ECMAScript spec has no reference of browser host objects (DOM, BOM, HTML5 APIs etc.). how the DOM is actually implemented depends on browser internals and is probably different among most of them. modern JS interpreters use JIT to improve the code performance and translate it to bytecode I am curious about what happens behind the scenes when I call document.getElementById('foo') . Does the call get delegated to browser native code by the interpreter or does the browser have JS implementations of all host objects? Do you know about any optimizations they do in regard to this? I read this overview of browser internals b...