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 = [9, 9],
obj = {
one: 9,
two: 9
},
one = 9,
two = 9;
var sum = 0 ;
};
</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… |
Variable performance |
|
pending… |
Primitive performance |
|
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