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>
const proto = {
0: 0,
1: 1,
2: 2,
3: 3,
4: 4,
k: 5,
l: 6,
m: 7,
n: 8,
o: 9
}
const obj = {
__proto__: proto,
a: 0,
b: 1,
c: 2,
d: 3,
e: 4,
f: 5,
g: 6,
h: 7,
i: 8,
j: 9
};
var sum = 0;
</script>
sum = 0;
Ready to run.
Test | Ops/sec | |
---|---|---|
Object.keys with traditional loop |
| ready |
for..in with Object.hasOwn |
| ready |
Object.keys with for..of |
| ready |
Object.values with for..of |
| ready |
Object.entries with for..of |
| ready |
for..in with obj.hasOwnProperty |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.