This is the definition of extend in Pro Javascript Design Patterns, Apress, 2008, p.44:
function extend(subClass, superClass) {
var F = function() {};
F.prototype = superClass.prototype;
subClass.prototype = new F();
subClass.prototype.constructor = subClass;
subClass.superclass = superClass.prototype;
if(superClass.prototype.constructor == Object.prototype.constructor) {
superClass.prototype.constructor = superClass;
}
}
For the line subClass.superclass = superClass.prototype;, I think it probably is equally the same if we do subClass.superclass = superClass, since in the future, we can always get to the prototype by subClass.superclass.prototype anyway. But I thought why not point to the constructor function, but point to the prototype? But this is a minor question.
The more important questions is, why do the last lines try to set the Object's prototype's constructor back to self? I tried it in Firefox and Chrome, and they always point that way already.
Also a little strange is that, why does it use if(superClass.prototype.constructor == Object.prototype.constructor) ? Why not just use if (superClass === Object) instead?
constructorproperty has no functional purpose in EcmaScript. – Bergi Oct 2 '12 at 13:43