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>
var o = {
type: 42,
prop1: 4,
prop2: 5,
prop3: 6
}, i;
var arr = ["prop1", "prop2", "prop3"];
var handle1 = function(o) {
if (o.type === 42) {
i++;
}
};
var handle2 = function(o) {
if (arr.every(function(key) {
return o[key];
})) {
i++;
}
};
</script>
Ready to run.
Test | Ops/sec | |
---|---|---|
cats |
| ready |
dogs |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.