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
var array=["foo","bar","baz","lorem","ipsum","lol","cat"];
var func=function(){2+2};
Array.prototype.forEach2=function(a){
var l=this.length;
for(var i=0;i<l;i++)a(this[i],i)
}
Array.prototype.forEach2=function(a){
var l=this.length;
for(var i=0;i<l;i++)a(this[i],i)
}
Array.prototype.forEach3=function(a, ctx){
var l=this.length;
for(var i=0;i<l;i++)a.call(ctx,this[i],i)
}
Ready to run.
Test | Ops/sec | |
---|---|---|
custom for each with context |
| ready |
for |
| ready |
foreach |
| ready |
custom foreach |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.