Сообщение от tsigel
|
var Collection = function (arr) {
arr.forEach(function (elem) {
this.push(elem);
}.bind(this));
};
|
У forEach есть 2-й параметр.
Сообщение от tsigel
|
Collection.prototype = [];
|
А восстановить ссылку на конструктор?
Сообщение от tsigel
|
html: function (html) {
if (html !== undefined) {
this.node.innerHTML = html;
} else {
return this.node.innerHTML;
}
return this;
},
|
if (arguments.length)
Сообщение от tsigel
|
alert("OMG, WTF!!");
|
хоть бы на console.log заменил)
Сообщение от tsigel
|
var classList = this.node.className.split(" ");
|
classList