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 is for contains
<script src="//cdnjs.cloudflare.com/ajax/libs/underscore.js/1.7.0/underscore.js"></script>
<script>
var underscore = _.noConflict();
</script>
<script src="//cdnjs.cloudflare.com/ajax/libs/lodash.js/2.4.1/lodash.min.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
});
}
var testItem = arr[200];
var notInArray = { not:'inarray'};
Ready to run.
Test | Ops/sec | |
---|---|---|
Native contains (indexOf) |
| ready |
Underscore contains |
| ready |
Lodash Contains |
| ready |
Native Loop Contains |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.