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
// Populate the base array
var arr = [];
for (var i = 0; i < 1000; i++) {
arr[i] = i;
}
function someFn(i) {
return i * 3 * 8;
}
function myForEach(arr, func) {
for (var i = 0, len = arr.length; i < len; i++)
func(arr[i], i, arr);
}
function myForEachWithThisArg(arr, func, thisArg) {
for (var i = 0, len = arr.length; i < len; i++)
func.call(thisArg, arr[i], i, arr);
}
function myBestForEach(arr, func, thisArg) {
return thisArg
? myForEachWithThisArg(arr, func, thisArg)
: myForEach(arr, func);
}
Ready to run.
Test | Ops/sec | |
---|---|---|
Array.ForEach |
| ready |
For |
| ready |
direct forEach |
| ready |
downward while |
| ready |
my forEach |
| ready |
my forEach with this-arg |
| ready |
my best forEach |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.