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
Difference from document-getelementbyid is the use of innerHTML
It also tests the ID direct acces. Reminder: This way is not W3C compliant. But, the code is clearer and works fine with IE6, and even with Firefox 4. However, it fails with Firefox 4 on this page :-(
<p id="foo">This is an element with <code>id="foo"</code>.</p>
<script>
function gEBI(id) {
return document.getElementById(id);
};
var nodes = {}; //used by $memo
function memo(id) {
return nodes[id] ? nodes[id] : nodes[id] = document.getElementById(id);
};
</script>
Ready to run.
Test | Ops/sec | |
---|---|---|
ID direct acces |
| ready |
document.getElementById() |
| ready |
gEBI() |
| ready |
Memoized $memo() |
| ready |
document.querySelector() |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.