Сообщение от Shitbox2
|
Ну и
newConstructor.prototype = Object.create(Target.prototype);
newConstructor.prototype.constructor = Target;
так ли нужны?
|
тут правильнее всего так:
newConstructor.prototype = Object.create(Target.prototype);
newConstructor.prototype.constructor = newConstructor;
быть может, это и подразумевалось, только автор опечатался