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
A quick look at Lo-Dash 2.4.1, Underscore 1.7, and Native Performance on common functional operations.
This covers reduce, using the common case of getting the maximum value in a group of numbers
<script src="//cdnjs.cloudflare.com/ajax/libs/underscore.js/1.7.0/underscore.js"></script>
<script>
var underscore = _.noConflict();
</script>
<script src="//cdn.rawgit.com/lodash/lodash/9c6ef342708f009f04910111d692a124b2a961ae/dist/lodash.js"></script>
<script>
var lodash = _.noConflict();
</script>
var arr = [];
var arr2 = [];
for (var i = 0; i < 10000; i++) {
arr.push({
index: i,
random: Math.random() * 10000
});
}
Ready to run.
Test | Ops/sec | |
---|---|---|
Native Reduce |
| ready |
Native For Loop Reduce |
| ready |
Underscore Reduce |
| ready |
Lo-Dash Reduce |
| ready |
Arrow Reduce |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.