let th = null;
for (let i = 1; i <= days; i++) {
+ this._date.setDate(i);
th = document.createElement("th");
+
+ if (this._date.getDay() == 0
+ || this._date.getDay() == 6)
+ th.classList.add("weekend");
+
th.innerText = i;
tr.appendChild(th);
}
for (let i = 1; i <= days; i++) {
this._date.setDate(i);
th = document.createElement("th");
+
+ if (this._date.getDay() == 0
+ || this._date.getDay() == 6)
+ th.classList.add("weekend");
+
th.innerText = weekday[this._date.getDay()];
tr.appendChild(th);
}