Не передается значение в переменную
function Rectangle(w, h) {
this.width = w;
}
Rectangle.prototype.downShow = function() {
this.width = this.width - 1;
document.write(rect1.width)
}
var rect1 = new Rectangle(100, 200);
setInterval(rect1.downShow, 200);
Не передается значение свойства width объекта rect1 в функцию dawnShow, от этого не срабатывает setInterval, не могу понять почему.
|