Немогу понять зачем в первом if'e ставить знак ! то есть (!gameOver)
[ js ]
var p1Button = document.getElementsByTagName("button")[0];
var p1Score = 0;
vvar p1Display = document.getElementById("p1Display");
var gameOver = false;
var winningScore = 5;
p1Button.addEventListener("click", function(){
p1Score++
if(!gameOver){
p1Display.textContent = p1Score;
if (p1Score === winningScore) {
gameOver = true;
}
}
})
[ /js ]
заранее благодарен.