app>validacao.js
function verificaSeOChutePossuiUmValorValido(chute) {
// const numero = +chute
const gameOver = chute, fimJogo = 'game over'
if (gameOver === fimJogo) {
document.body.innerHTML = `
<div style="background-color:#0AA1DD; padding: 5em;">
<h2>Fim de jogo</h2>
<h3>Voce disse ${fimJogo}!!! Obrigado(a) por jogar e volte sempre!</h3>
<button id="jogar-novamente" class="btn-jogar">Jogar novamente</button>
</div>
`
}
/*
{
... código ...
}
*/
}
document.body.addEventListener('click', e => {
if (e.target.id == 'jogar-novamente') {
window.location.reload()
}
})