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
We will compare the performance of forEach
vs reduce
.
var count = 1000000;
var array = Array(count).fill(undefined).map(x => ({
id: Math.random().toString(),
name: Math.random().toString(),
hello: 'qwerty',
world: 'qwerty',
this: 'qwerty',
is: 'qwerty',
a: 'qwerty',
test: 'qwerty'
}));
Ready to run.
Test | Ops/sec | |
---|---|---|
Creating the Map using forEach |
| ready |
Creating the Map using reduce |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.