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
Angular 1.4.4 stable forEach vs jquery foreach vs javascript iterators
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.4/angular.min.js"></script>var sum = 0;
var arr = [];
var myFunc = function() {
sum += 1;
}
for (var i = 0; i < 100000; i++) {
arr.push(i)
}Ready to run.
| Test | Ops/sec | |
|---|---|---|
| angular foreach | | ready |
| for in loop | | ready |
| for loop | | ready |
| for loop reverse | | ready |
| for loop with caching | | ready |
| browser forEach | | ready |
| jquery forEach | | ready |
| Array.map | | ready |
| Array.filter | | ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.