Test name | Executions per second |
---|---|
querySelector by TAG | 1532669.9 Ops/sec |
querySelector by ID | 1018262.8 Ops/sec |
<html>
<head>
<title>Title</title>
<script></script>
</head>
<body>
<nav id="menu"></nav>
<header id="h"></header>
<main id="content">
<article></article>
</main>
<footer></footer>
</body>
</html>
document.querySelectorAll('HEADER')
document.querySelectorAll('#h')