let numeroSecreto= gerarNumeroAleatorio(); let tentativas= 1;
function exibirTexto(tag, texto){ let campo= document.querySelector(tag); campo.innerHTML= texto; }
function gerarNumeroAleatorio(){ return parseInt(Math.random * 10 + 1); }
exibirTexto("h1", "Jogo de advinhação"); exibirTexto("p", "Escolha um número de 1 a 10");
function verificarChute(){ let chute= document.querySelector("input").value;
if(chute == numeroSecreto){
exibirTexto("h1", "Voçê acertou");
let palavraTentativa= tentativas > 1? "tentativa" : "tentativas";
let mensagemTentativas= `Voçê descobriu o número secreto com ${tentativas} de ${mensagemTentativas}`;
exibirTexto("p", mensagemTentativas);
} else {
if(chute > numeroSecreto){
exibirTexto("p", "Voçê errou, o número secreto é maior");
} else {
exibirTexto("p", "Voçê errou, o número secreto é menor");
}
tentativas++
}
}