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 if the perf hit for for (0...Object.keys(..))
is enough to matter as compared to for-in
.
<script>
// pre-ES5 polyfill for Object.keys()
Object.keys = Object.keys || function(o, k, r) {
r = [];
for (k in o)
r.hasOwnProperty.call(o,k) && r.push(k);
return r;
}
function iterate1() {
var ret = "";
for (var i in obj) {
ret += obj[i];
}
return ret;
}
function iterate2() {
var ret = "";
var keys = Object.keys(obj);
for (var i = 0, len = keys.length; i < len; i++) {
ret += obj[keys[i]];
}
}
// object with 10 keys in it
var obj = {
a: "a",
b: "b",
c: "c",
d: "d",
e: "e",
f: "f",
g: "g",
h: "h",
i: "i",
j: "j"
};
var tmp;
</script>
tmp = "";
Ready to run.
Test | Ops/sec | |
---|---|---|
for-in |
| ready |
for (0...Object.keys().length) |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.