Performance of Array vs. Object
JavaScript performance comparison
Info
After seeing http://jsperf.com/javascript-associative-vs-non-associative-arrays, I thought the test could be improved.
Preparation code
<script>
Benchmark.prototype.setup = function() {
var arr = [],
i,
obj = {};
for(i = 10000; i < 50000; i += 1) {
var o = {payload:i};
arr.push(o);
obj[i] = o;
}
};
</script>
Test runner
Warning! For accurate results, please disable Firebug before running the tests. (Why?)
Java applet disabled.
| Test | Ops/sec | |
|---|---|---|
Array Performance |
|
pending… |
Object Performance |
|
pending… |
Object Performance using known length |
|
pending… |
Using Object.keys() |
|
pending… |
Compare results of other browsers
Revisions
You can edit these tests or add even more tests to this page by appending /edit to the URL. Here’s a list of current revisions for this page:
- Revision 1: published by Christopher Froehlich
- Revision 2: published by hyphen
- Revision 3: published by George
- Revision 4: published by Valeriu Paloş
- Revision 5: published
- Revision 8: published
- Revision 10: published
- Revision 11: published
- Revision 12: published
- Revision 13: published by Marcin
- Revision 14: published by vincent piel
- Revision 15: published
- Revision 16: published
- Revision 17: published
- Revision 19: published by Jamie Olson
- Revision 21: published
- Revision 22: published
- Revision 24: published by Marcin
- Revision 25: published
- Revision 26: published
0 comments