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 src="https://cdn.jsdelivr.net/npm/lodash@4.17.21/lodash.min.js"></script>
const objectsToLookupPropertyIn = new Array(10_000).fill(0).map((_, index) => ({
coreData: {
status: `hooray-${index}`,
subStatus: {
mode: `mode-${index}`,
user: `user-${index}`,
moreThings: `moreThings-${index}`,
},
}
}));
const lookupLocations = [
'status',
'subStatus.mode',
'subStatus.user',
'subStatus.moreThings'
];
const maxRandomNumber = (lookupLocations.length - 1);
const allLookups = new Array(10).fill(0).map((_, index) => {
const indexOfLookup = Math.floor(Math.random() * (lookupLocations.length - 1));
return lookupLocations[indexOfLookup];
});
Ready to run.
Test | Ops/sec | |
---|---|---|
Use a map! |
| ready |
lodash get |
| ready |
Manually look it up |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.