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
Testing accessing javascript functions from a parent window. To run this test, you need to open the parent test window but run the tests in this window. The parent test window is http://jsperf.com/iframe
<script>
var arrInner = [];
for (var i = 0; i < 1000; i++)
arrInner.push(i);
function accessArrayInner(i) {
return arrInner[i];
}
accessArrayTopCached = top.accessArrayTop;
</script>
Ready to run.
Test | Ops/sec | |
---|---|---|
innerArray |
| ready |
topArray |
| ready |
topArrayCached |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.