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
Comparing various approaches to iterating over an object's enumerable properties.
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/3.9.3/lodash.js"></script>var testData = {};
var fixture = '';
var i;
var dataKeys;
var dataLen;
for (i = 0; i < 100; ++i) {
testData['user' + i] = 'user' + i;
}
dataKeys = Object.keys(testData);
dataLen = dataKeys.length;
for (i = 0; i < dataLen; i++) {
fixture += testData[dataKeys[i]];
}Ready to run.
| Test | Ops/sec | |
|---|---|---|
| for…in | | ready |
| for loop Object.keys no cache length | | ready |
| for loop Object.keys w/cache length | | ready |
| Object.keys + forEach | | ready |
| _.each | | ready |
| for loop _.keys w/cache length | | ready |
| jQuery.each | | ready |
| Object.keys forEach + cached callback | | ready |
| while loop Object.keys reverse | | ready |
| while loop Object.keys forward | | ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.