Uncaught TypeError: Cannot set property 'module' of undefined
function Febox (start){
this.start = start;
this.module = null;
this.start();
}
// Переопределения свойста module
Febox.prototype.module = 'dashboard';
var dashboard = new Febox(function (){
alert(this.module);
});
Uncaught TypeError: Cannot set property 'module' of undefined