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
Removing results-skewing tests which aren't comparable to the others - keeping only searches on class
<script src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js">
</script>
<script>
$(document).ready(function() {
var $pop = $('#parent'),
i = 5000;
while (i--)
$pop.append("<li class='target' an_attribute='target'>" + i + "</li>");
var val;
});
</script>
<div id='grandparent'>
<ul id='parent'>
</ul>
</div>
Ready to run.
Test | Ops/sec | |
---|---|---|
$('.target') |
| ready |
$('li.target') |
| ready |
$('[an_attribute=target]') |
| ready |
getElementsByClassName |
| ready |
Filter |
| ready |
Find |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.