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
Compare native forEach, for loop, underscore and lodash .each.
<script src="//cdnjs.cloudflare.com/ajax/libs/lodash.js/2.4.1/lodash.js"></script>
<script>var lodash = _.noConflict();</script>
<script src="//cdnjs.cloudflare.com/ajax/libs/underscore.js/1.7.0/underscore-min.js"></script>
<script>var underscore = _.noConflict();</script>var arr = [];
for (var i = 0; i < 10000; i++) {
arr.push({
Number: i
});
};
var e = null;
function doWork(o, i) {
e = o;
};Ready to run.
| Test | Ops/sec | |
|---|---|---|
| For loop using hash key | | ready |
| For loop using index | | ready |
| Native forEach | | ready |
| Native forEach Named func | | ready |
| Lodash forEach Named func | | ready |
| Underscore forEach Named func | | ready |
| for .. of | | ready |
| LoDash forEach | | ready |
| Underscore forEach | | ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.