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
This test compares the performance of global variables to local variables within functions.
Global variables should be slower because they do not exist in a function's activation object. JavaScript must traverse the Scope Chain to locate global variables.
<script>
var test = {
a: {
b: {
c: {
d:{
e: function(param){return param+1;},
asfas: 214,
asf: "asffasf",
kgakgag: 3214,
asdkqrqwr: 132415,
dsagkksdg:12441,
gksdgksd: 141412,
asfas: 12424,
aqtrtz: 14124,
pooi: "sagdgdsdgsdg"
},
asfas: 214,
asf: "asffasf",
kgakgag: 3214,
asdkqrqwr: 132415,
dsagkksdg:12441,
gksdgksd: 141412,
asfas: 12424,
aqtrtz: 14124,
pooi: "sagdgdsdgsdg"
},
asfas: 214,
asf: "asffasf",
kgakgag: 3214,
asdkqrqwr: 132415,
dsagkksdg:12441,
gksdgksd: 141412,
asfas: 12424,
aqtrtz: 14124,
pooi: "sagdgdsdgsdg"
},
asfas: 214,
asf: "asffasf",
kgakgag: 3214,
asdkqrqwr: 132415,
dsagkksdg:12441,
gksdgksd: 141412,
asfas: 12424,
aqtrtz: 14124,
pooi: "sagdgdsdgsdg"
},
asfas: 214,
asf: "asffasf",
kgakgag: 3214,
asdkqrqwr: 132415,
dsagkksdg:12441,
gksdgksd: 141412,
asfas: 12424,
aqtrtz: 14124,
pooi: "sagdgdsdgsdg"
};
function x() {
for ( i = 0; i < 10; i++)
test.a.b.c.d.e(i);
}
function w() {
var local = test.a.b.c.d.e;
for ( i = 0; i < 10; i++)
local(i);
}
function y() {
for ( i = 0; i < 10; i++)
window.test.a.b.c.d.e(i);
}
function z() {
var local = test;
for ( i = 0; i < 10; i++)
local.a.b.c.d.e(i);
}
</script>
Ready to run.
Test | Ops/sec | |
---|---|---|
Global variables |
| ready |
window |
| ready |
cached object |
| ready |
cached function |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.