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
<ul>
<li data-test="test"></li>
<li></li>
<li data-test="test"></li>
<li></li>
<li data-test="test"></li>
<li></li>
<li data-test="test"></li>
<li></li>
<li data-test="test"></li>
<li></li>
<li data-test="test"></li>
<li></li>
<li data-test="test"></li>
<li></li>
<li data-test="test"></li>
<li></li>
<li data-test="test"></li>
<li></li>
<li data-test="test"></li>
<li></li>
</ul>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
jQuery.extend(jQuery.expr[':'], {
'has-dependency': (function() {
if (typeof document.getElementsByTagName("html")[0].dataset === "object")
return function(el, index, args) {
if (typeof(dependency = el.dataset.test) !== "undefinded")
return ("," + dependency + ",").indexOf("," + args[3] + ",") > -1;
else
return false;
};
else
return function(el, index, args) {
if (typeof(dependency = el.getAttribute("data-test")) === "string")
return ("," + dependency + ",").indexOf("," + args[3] + ",") > -1;
else
return false;
};
})()
});
Ready to run.
Test | Ops/sec | |
---|---|---|
queryselector |
| ready |
each |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.