Get HTML tag

Benchmark created on


Preparation HTML

<html id="html">
<body>
<h1>Test</h1>
</body>
</html>

Test runner

Ready to run.

Testing in
TestOps/sec
get by document.documentElement
const html = document.documentElement
ready
get by querySelector
const html = document.querySelector('html')
ready
By tag name
const html = document.getElementsByTagName('html')[0];
ready
by ID
const html = document.getElementById('html')
ready

Revisions

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