Javascript arrays vs objects

Summary: Arrays are a lot smaller than objects, but only slightly faster on newer browsers.

I’m writing an in-memory Javascript app that handles several thousand rows. Each row could be stored either as an array [1,2,3] or an object {"x":1,"y":2,"z":3}. Having read up on the performance of arrays vs objects, I thought I’d do a few tests on storing numbers from 0 to 1 million. The results for Chrome are below. (Firefox 7 was similar.)

  Time Size (MB)
Array: x[i] = i 2.44s 8
Object: x[i] = i 3.02s 57
Object: x["a_long_dummy_testing_string"+i]=i 4.21s 238

The key lessons for me were:

  • Browsers used to process arrays MUCH faster than objects. This gap has now shrunk.
  • However, arrays are still better: not for their speed, but for their space efficiency.
  • If you’re processing a million rows or less, don’t worry about memory. If you’re storing stuff as arrays, you can store 128 columns in 1GB of RAM (1024/8=128).

7 thoughts on “Javascript arrays vs objects”

  1. Considering this, do you think OO based languages add overhead to space it occupies when run, in memory?

  2. dineshsaravanank

    After reading this I was curious about 1) How is the read performance, 2) How does the object with long key perform.
    So I ran some tests. And,
    1) as expected reads are much faster than the writes and there is no significant difference between array and object when it came to read.
    2) Longer keys take more time to execute, smaller keys are significantly faster than very long keys. But there are some surprises here. An object {“1″:1,”2″:2,”3”:3} is much faster than {“a1”:1, “a2”:2, “a3”:4}, while object {“a1″:1,”a2”:2} and object {“alittlelong1”:1, “alittlelong2”:2} are almost same.

    You can see the tests here http://jsfiddle.net/ETAb9/

  3. dineshsaravanank

    Also, I got completely different numbers than yours. Array x[i]=i, 43ms | Object x[i]=i, 43ms | Object x[“akey”+i]=i, 2443ms. I tested in chrome, as you can see the keyed object is *significantly* slower in my case…

  4. @dinesh: When object keys are integers, browsers tend to optimise them in an array-like fashion. That explains the {1:1, 2:2} being faster than {“a1″:1,”a2”:2}.

    @kalpesh, the main point of this,actually, was that performance is increasingly less of a worry for most applications. Browsers are fast enough. So the choice of language is becoming increasingly less performance driven and more ease driven.

  5. Anand,

    This is because object is a fundamental data type in Javascript and an Array is implemented as a special kind of object. Hence the lookups (the Time column) would be implemented as a hash map lookup in both cases.

    However the storage could be an interesting case. As one of the early gotchas of Javascript teaches us:

    Person.Name is equivalent to Person['Name']

    But in the case of Array’s some magic is applied leading to optimisations in storage. Hence I suppose rather than storing unicode strings for “0”, “1” etc., they are stored as integers.

    Javascript, like English, is berry phunny language 🙂

  6. I ran some tests and was surprised that array access is only slightly faster. Something strange has to be going on with that. My test compares numeric entries either way. The object implementation normally has the extra work of casting to string and hashing. I have a feeling it will be different with non-numeric versus numeric keys. Still, it hints at something strange going on.

Leave a Comment

Your email address will not be published. Required fields are marked *