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
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js">
</script>
<div id="top" class="mydiv">
<p id="para_1" class="mytext">
Paragraph one
</p>
<p id="para_2" class="mytext">
Paragraph two
</p>
<p id="para_3" class="mytext">
Paragraph three
</p>
<span id="span_1" class="mytext">
Text in a span
</span>
</div>
<p id="para_4" class="mytext">
Paragraph four
</p>
<p id="para_5" class="mytext">
Paragraph five
</p>
<p id="para_6" class="mytext">
Paragraph six
</p>
<script>
var parent_el = $(document.getElementById("top"));
var cached = parent_el.find('p.mytext');
var mytext = $('p.mytext');
</script>Ready to run.
| Test | Ops/sec | |
|---|---|---|
| Cached elements | | ready |
| No cache | | ready |
| Cache2 | | ready |
| No cache - single CSS | | ready |
| Cache3 | | ready |
| New Cache 1 | | ready |
| New Cache 2 | | ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.