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
function generateRandomRules(count) {
const types = ["custom", "default"];
const rules = [];
for (let i = 0; i < count; i++) {
const rule = {
name: `Rule${i + 1}`,
type: types[Math.floor(Math.random() * types.length)], // Randomly assigns "custom" or "default"
disabled: Math.random() > 0.5 // Randomly assigns true or false
};
rules.push(rule);
}
return rules;
}
const rules = generateRandomRules(100);
Ready to run.
Test | Ops/sec | |
---|---|---|
two filters |
| ready |
for loop |
| ready |
partition fn |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.