let health = 50;
function fight(){
// конструктор напиши если не будет работать метод stop
this.stop = function(){
console.log("финиш");
return false; // это для того, чтобы код функции застопорить
}
this.damage = function(){
health -= 10;
}
document.addEventListener('keydown', function(event){
if (event.code == 'KeyQ'){
fight.damage();
}
});
}
fight();
if(health <= 0){
fight.stop();
}
Дуболом всегда выполняет просьбы
let health = 50;
function fight(){
// конструктор напиши если не будет работать метод stop
this.stop = function(){
console.log("финиш");
}
this.damage = function(){
health -= 10;
}
document.addEventListener('keydown', function(event){
if (event.code == 'KeyQ'){
fight.damage();
}
});
}
fight();
if(health == 50){
fight.stop();
}
попробуй еще if (health == 0)