Performance associated with Arrays and Objects in JavaScript (especially Google V8) would be very interesting to document. I find no comprehensive article on this topic anywhere on the Internet.

I understand that some Objects use classes as their underlying data structure. If there are a lot of properties, it is sometimes treated as a hash table?

I also understand that Arrays are sometimes treated like C++ Arrays (i.e. fast random indexing, slow deletion and resizing). And, other times, they are treated more like Objects (fast indexing, fast insertion/removal, more memory). And, maybe sometimes they are stored as linked lists (i.e. slow random indexing, fast removal/insertion at the beginning/end)

What is the precise performance of Array/Object retrievals and manipulations in JavaScript? (specifically for Google V8)

More specifically, what it the performance impact of:

  • Adding a property to an Object
  • Removing a property from an Object
  • Indexing a property in an Object
  • Adding an item to an Array
  • Removing an item from an Array
  • Indexing an item in an Array
  • Calling Array.pop()
  • Calling Array.push()
  • Calling Array.shift()
  • Calling Array.unshift()
  • Calling Array.slice()

Any articles or links for more details would be appreciated, as well. :)

EDIT: I am really wondering how JavaScript arrays and objects work under the hood. Also, in what context does the V8 engine "know" to "switch-over" to another data structure?

For example, suppose I create an array with...

var arr = [];
arr[10000000] = 20;
arr.push(21);

What's really going on here?

Or... what about this...???

var arr = [];
//Add lots of items
for(var i = 0; i < 1000000; i++)
    arr[i] = Math.random();
//Now I use it like a queue...
for(var i = 0; i < arr.length; i++)
{
    var item = arr[i].shift();
    //Do something with item...
}

For conventional arrays, the performance would be terrible; whereas, if a LinkedList was used... not so bad.

link|improve this question

2  
Visit jsperf.com, and create test cases. – Rob W Dec 7 '11 at 22:49
@RobW There's more at play here than simple tests can account for which requires knowledge of how the JIT compilers work, and what is being done with the data. If I find some time I'll add an answer, but hopefully someone else will have time to get into the nitty gritty. Also I'd like to just leave this link here – Incognito Dec 17 '11 at 4:33
JIT things I'm talking about are things like "shape" of an object, or arrays with undefined values between defined elements, as well as the more recently experimented with type-specializing features... array-specific methods may depend on use as well as if the prototype has been manipulated or not. There is no such thing as "knowing to" switch to another data type AFAIK. – Incognito Dec 17 '11 at 5:00
feedback

4 Answers

up vote 11 down vote accepted
+100

Hmm... maybe an overkill for the answer... but i created a test suite, precisely to explore these issues (and more)

http://jsperf.com/object-vs-array-vs-native-linked-list/3

And in that sense, you can see the performance issues in this 50+ test case tester (it will take a long time)

Also as its name suggest, it explores the usage of using the native linked list nature of the DOM structure

More details on my blog regarding this http://pic-o.com/blog/2011/12/divlinkedlist/

The summary is as followed

  • V8 Array is Fast, VERY FAST
  • Array push / pop / shift is ~approx 20x+ faster then any object equivalent.
  • Surprisingly Array.shift() is fast ~approx 6x slower then an array pop, but is ~approx 100x faster then an object attribute deletion.
  • Amusingly, Array.push( data ); is faster then Array[nextIndex] = data by almost 20 times over.
  • Array.unshift(data) is slower as expected, and is ~approx 5x slower then a new property adding.
  • Nulling the value array[index] = null is faster then deleting it delete array[index] (undefined) in an array by ~approx 4x++ faster.
  • Surprisingly Nulling a value in an object is obj[attr] = null ~approx 2x slower then just deleting the attribute delete obj[attr]
  • Unsurprisingly, mid array Array.splice(index,0,data) is slow, very slow.
  • Surprisingly, Array.splice(index,1,data) has been optimized (no length change) and is 100x faster then just splice Array.splice(index,0,data)
  • unsurprisingly, the divLinkedList is inferior to an array on all sectors, except dll.splice(index,1) removal (Where it broke the test system).
  • BIGGEST SURPRISE of it all [as jjrv pointed out], V8 array writes are slightly faster then V8 reads =O

Note: These wonderful performance results are not shared across browsers, especially *cough* IE. Also the test is huge, hence i yet to fully analyze and evaluate the results : please edit it in =)

link|improve this answer
this is a great overkill answer for sure – kommradHomer Dec 21 '11 at 7:53
2  
dude... the Internet (and I) thank you for your awesome answer and test suite. You win lots of points. :) – BMiner Dec 21 '11 at 19:41
2  
@BMiner, just so happen to see the question, after having this done =) – pico.creator Dec 21 '11 at 22:47
1  
Some of those results look very strange. For example in Chrome array writes are roughly 10x faster than reads, while in Firefox it's the opposite. Are you sure the browser JIT isn't optimizing away your entire test in some cases? – jjrv May 3 at 20:40
@jjrv good gosh =O you are right... I even updated the each write case to be incrementally unique, to prevent JIT... And honestly, unless the JIT optimization is that good (which I find it hard to believe), it could just be a case of poorly optimized read, or heavily optimized writes (write to immediate buffer?)... which is worth investigating : lol – pico.creator May 5 at 10:08
show 2 more comments
feedback

At a basic level that stays within the realms of JavaScript, properties on objects are much more complex entities. You can create properties with setters/getters, with differing enumerability, writability, and configurability. An item in an array isn't able to be customized in this way: it either exists or it doesn't. At the underlying engine level this allows for a lot more optimization in terms of organizing the memory that represents the structure.

In terms of identifying an array from an object (dictionary), JS engines have always made explicit lines between the two. That's why there's a multitude of articles on methods of trying to make a semi-fake Array-like object that behaves like one but allows other functionality. The reason this separation even exists is because the JS engines themselves store the two differently.

Properties can be stored on an array object but this simply demonstrates how JavaScript insists on making everything an object. The indexed values in an array are stored differently from any properties you decide to set on the array object that represents the underlying array data.

Whenever you're using a legit array object and using one of the standard methods of manipulating that array you're going to be hitting the underlying array data. In V8 specifically, these are essentially the same as a C++ array so those rules will apply. If for some reason you're working with an array that the engine isn't able to determine with confidence is an array, then you're on much shakier ground. With recent versions of V8 there's more room to work though. For example, it's possible to create a class that has Array.prototype as its prototype and still gain efficient access to the various native array manipulation methods. But this is a recent change.

Specific links to recent changes to array manipulation may come in handy here:

As a bit of extra, here's Array Pop and Array Push directly from V8's source, both implemented in JS itself:

function ArrayPop() {
  if (IS_NULL_OR_UNDEFINED(this) && !IS_UNDETECTABLE(this)) {
    throw MakeTypeError("called_on_null_or_undefined",
                        ["Array.prototype.pop"]);
  }

  var n = TO_UINT32(this.length);
  if (n == 0) {
    this.length = n;
    return;
  }
  n--;
  var value = this[n];
  this.length = n;
  delete this[n];
  return value;
}


function ArrayPush() {
  if (IS_NULL_OR_UNDEFINED(this) && !IS_UNDETECTABLE(this)) {
    throw MakeTypeError("called_on_null_or_undefined",
                        ["Array.prototype.push"]);
  }

  var n = TO_UINT32(this.length);
  var m = %_ArgumentsLength();
  for (var i = 0; i < m; i++) {
    this[i+n] = %_Arguments(i);
  }
  this.length = n + m;
  return this.length;
}
link|improve this answer
feedback

These javascript benchmarks may be of use to you.

link|improve this answer
+1 - this helps. In fact, I read this exact article before posting the question. Doesn't quite make the cut to be an "acceptable" answer. ;) – BMiner Dec 15 '11 at 17:25
feedback

Lame answer is check out JSPerf. Here are two of your several benchmarked.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.