perf

Why do we build a prototype inheritance chain rather then using object composition. Looking up through the prototype for each step in the chain get's expensive.

Here is some dummy example code :

var lower  = {
    "foo": "bar"
};

var upper = {
    "bar": "foo"
};

var chained = Object.create(lower,  pd(upper));

var chainedPrototype = Object.create(chained);

var combinedPrototype = Object.create(pd.merge(lower, upper));

var o1 = Object.create(chainedPrototypes);
var o2 = Object.create(combinedPrototypes);

uses pd because property descriptors are verbose as hell.

o2.foo is faster then o1.foo since it only goes up two prototype chain rather then three.

Since travelling up the prototype chain is expensive why do we construct one instead of using object composition?

Another better example would be :

var Element = {
  // Element methods
}

var Node = {
  // Node methods
}

var setUpChain = Object.create(Element, pd(Node));
var chained = Object.create(setUpChain);
var combined = Object.create(pd.merge(Node, Element));

document.createChainedElement = function() {
  return Object.create(chained);
}

document.createCombinedElement = function() {
  return Object.create(combined);
}

I do not see any code merging prototype objects for efficiency. I see a lot of code building chained prototypes. Why is the latter more popular?

The only reason I can think of is using Object.isPrototypeOf to test for individual prototypes in your chain.

Apart from isPrototypeOf are there clear advantages to using inheritance over composition?

link|improve this question

1  
Note that one of the optimizations every self-respecting JIT-compiler (and not only in JS, e.g. PyPy does that for Python objects - and Python's object attribute lookup is even more complex!) looks for common object layouts and lookup chains and optimizes access to directly compute the offset. See morepypy.blogspot.com/2010/11/… which explains the general idea (in a class-based setting) and links to resources on similar optimizations in other JIT-compilers (e.g. V8). Your benchmark confirms that there's little difference between o1 and o2. – delnan Sep 3 '11 at 17:44
@delnan would you think worrying about the extra computational cost of going up the prototype chain is a micro optimisation we should not care about? – Raynos Sep 3 '11 at 19:46
1  
That and even more - it's an micro-optimization when using a brain-dead interpreter. When using a good JIT-compiler (and those become more common and even better every year), it's completely possible are there won't be any difference at all (after JIT warmup, of course). – delnan Sep 3 '11 at 20:28
feedback

2 Answers

up vote 4 down vote accepted

The main reason would have to be changes to the prototype object. A change to an ancestor object will be reflected across the entire chain. This could, conceivably, be a benefit. Though I can't immediately think of any real-world instances, I think embracing this dynamic nature could provide a dynamic that other (read: class-based) languages simply don't provide.

Objects further up the prototype chain could evolve as needed across the lifetime of an application, and those changes would be reflected across all descendant objects. This could be easily combined with JavaScript's functions as first-class objects to dynamically modify functionality as needed.

That said, if this functionality is not necessary, there is no reason to use the prototype chain over composition.

link|improve this answer
Thanks, I forgot about objects not being pass by reference. – Raynos Sep 3 '11 at 16:44
feedback

Well, consider what would happen if lower or upper changed. The combined prototype wouldn't reflect that change since you've created a new object by copying properties from them.

For many situations that would be fine, but it's sure not as dynamic as actually constructing proper prototype chains for your objects.

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.