jsPerf.app is an online JavaScript performance benchmark test runner & jsperf.com mirror. It is a complete rewrite in homage to the once excellent jsperf.com now with hopefully a more modern & maintainable codebase.
jsperf.com URLs are mirrored at the same path, e.g:
https://jsperf.com/negative-modulo/2
Can be accessed at:
https://jsperf.app/negative-modulo/2
Compare document.querySelectorAll vs document.getElementsByTagName vs a hybrid approach that uses the one fastest in the given browser.
Looks at all elements and pulls out its length to force getElementsByTagName to dereference the live nodeList.
<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>
<form>
<input type="text">
<input type="text">
<input type="text">
<input type="text">
<input type="text">
<input type="text">
<input type="text">
<input type="text">
<input type="text">
</form>
<div>
<p>
<strong><em><span><a href="#"></a></span></em></strong>
<strong><em><span><a href="#"></a></span></em></strong>
<strong><em><span><a href="#"></a></span></em></strong>
<strong><em><span><a href="#"></a></span></em></strong>
<strong><em><span><a href="#"></a></span></em></strong>
</p>
<p>
<strong><em><span><a href="#"></a></span></em></strong>
<strong><em><span><a href="#"></a></span></em></strong>
<strong><em><span><a href="#"></a></span></em></strong>
<strong><em><span><a href="#"></a></span></em></strong>
<strong><em><span><a href="#"></a></span></em></strong>
</p>
</div>
var f=(/Opera/.test(navigator.userAgent)?document.querySelectorAll:document.getElementsByTagName);
Ready to run.
Test | Ops/sec | |
---|---|---|
querySelectorAll |
| ready |
getElementsByTagName |
| ready |
hybrid |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.