Показать сообщение отдельно
  #2 (permalink)  
Старый 23.02.2018, 09:29
Профессор
Отправить личное сообщение для Nexus Посмотреть профиль Найти все сообщения от Nexus
 
Регистрация: 04.12.2012
Сообщений: 3,791

function Main(price,quantity){
	this.price=price;
	this.quantity=quantity;
}
Main.prototype.price;
Main.prototype.quantity;
Main.prototype.getPrice=function(){
	return this.price*this.quantity;
}

function Child(price,quantity){
	this.price=price;
	this.quantity=quantity;
}
Child.prototype=Object.create(Main.prototype);

alert((new Child(2,6)).getPrice());
Ответить с цитированием