как мне настроить interval для вызова функции внутри класса
#javascript #scope #settimeout #javascript #область видимости #settimeout Вопрос: У меня есть класс, подобный: function run(){ this.interval; this.start = function(){ this.interval = setInterval('this.draw()',1000); }; this.draw = function(){ //some code };} var…