Почему тут при инициализации класса в конструктор не передается this.classs?
function Branch(){
this.branch = [];
this.branchUl = document.createElement('UL');
this.branchUl.className = this.classs;
document.body.appendChild(this.branchUl);
alert(this.classs)
};
function Last() {
this.classs = 'last';
this.when = 'last';
this.lastBooks = [];
Last.prototype = new Branch;
Last.prototype.constructor = Last;
};