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
Underscore.js has a filter function (aliased to select) which uses native filter if it's available. It also has a reject function which returns the inverse results; however it doesn't use native filter. This is to explore whether there's a significant performance difference.
<script src="http://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.3.1/underscore-min.js"></script>window.contacts = [];
var contact;
function getRandomInt (min, max) {
return Math.floor(Math.random() * (max - min + 1)) + min;
}
for (var i=0; i < 5000; i++) {
contact = {};
contact.firstName = 'firstName' + getRandomInt(1, 500);
contact.lastName = 'lastName' + getRandomInt(1, 500);
contact.city = ["Boulder", "Denver", "Denver", "Golden"][getRandomInt(0, 3)];
contact.state = "CO";
contacts.push(contact);
}
var boulder = window.boulder = window.boulder || {};Ready to run.
| Test | Ops/sec | |
|---|---|---|
| filter | | ready |
| reject | | ready |
| filter-negated | | ready |
| filter-negated manually | | ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.