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
Testing speed of a standard for loop vs. Array.indexOf.
var str = "memory_expire";
function indexOfFor(ar, v) {
var i, l = ar.length;
for (i = 0; i < l; i++) {
if (ar[i] === v) {
return i;
}
}
return -1;
}
function indexOfWhile(ar, v) {
var i = ar.length;
while (i--) {
if (ar[i] === v) {
return i;
}
}
return -1;
}
function strIndexOf(ar, v) {
return ar.indexOf(v);
}
function strIncludes(ar, v) {
return ar.includes(v);
}
function regexTest(ar, v) {
var re = new RegExp(v);
return re.test(ar);
}
Ready to run.
Test | Ops/sec | |
---|---|---|
For loop |
| ready |
While Loop |
| ready |
native indexof |
| ready |
native includes |
| ready |
Regex test |
| ready |
inline indexOf |
| ready |
direct cmp |
| ready |
slice cmp |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.