Показать сообщение отдельно
  #15 (permalink)  
Старый 14.08.2016, 12:00
Профессор
Отправить личное сообщение для DivMan Посмотреть профиль Найти все сообщения от DivMan
 
Регистрация: 08.03.2016
Сообщений: 429

Почему ResetableCounter is not defined?

function Counter(init){
	this.init = init;
	this.counter = init;
}

Counter.prototype.inc = function(){
		this.counter++
}

ResetableCounter.prototype = Object.create(Counter.prototype)

ResetableCounter.prototype.reset = function(){
	this.counter = this.init
}

let c = new ResetableCounter(100)
c.inc()
c.inc()
Ответить с цитированием