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
<script src="//cdnjs.cloudflare.com/ajax/libs/underscore.js/1.7.0/underscore-min.js"></script><script src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.26/angular.min.js"></script>
var emptyObj = {},
smallObj = { size:5 },
medObj = { size:25 },
lrgObj = { size:50 },
allObjects = [ emptyObj, smallObj, medObj, lrgObj ];
_.each(_.rest(allObjects), function(obj) {
_.times(obj.size - 1, function(i) { obj[i] = i + 1; });
});
function extendWithFn(fn) {
var result;
_.each(allObjects, function(destinationObj) {
_.each(allObjects, function(sourceObj) {
result = fn({}, destinationObj, sourceObj);
})
});
return result;
};
Ready to run.
Test | Ops/sec | |
---|---|---|
Extend with Angular |
| ready |
Extend with Underscore |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.