http://javascript.ru/tutorial/object/inheritance уже пару часов читаю не как не могу понять
function extend(Child, Parent) {
var F = function() { }
F.prototype = Parent.prototype
Child.prototype = new F()
Child.prototype.constructor = Child
Child.superclass = Parent.prototype
}
в чём отличие prototype и [[prototype]]