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
Rewriting a list by traversing the DOM and using innerHTML / innerText / textContent, removing the entire list and using appendChild to reinsert it into the DOM, and by looping through a getElementsByTagName array.
<ul id="test">
<li>a</li>
<li>b</li>
<li>c</li>
</ul>
<script>
var oList = document.getElementById('test'),
arr = ['c', 'b', 'a'];
function li(node, text) {
node.appendChild(document.createTextNode(text));
return node;
}
</script>
Ready to run.
Test | Ops/sec | |
---|---|---|
textContent |
| ready |
innerText |
| ready |
innerHTML |
| ready |
appendChild |
| ready |
getElementsByTagName |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.