let numeroSecreto = numeroAleatorio();
let tentativas = 1;
function exibirTextoNaTela(tag, texto){
let elemento = document.querySelector(tag);
elemento.innerHTML = texto;
}
exibirTextoNaTela('h1' , 'hora do desafio');
exibirTextoNaTela('p' , 'Escolha qualquer numero entre 1 e 10');
function verificarChute(){
let chute = document.querySelector('input').value;
if(chute == numeroSecreto){
exibirTextoNaTela('h1', 'acertou!!!');
let palavraTentativas = tentativas > 1 ? 'tentativas' : 'tentativa';
let mensagemTentativas = `Você descobriu o numero secreto com ${tentativas} ${palavraTentativas} `;
exibirTextoNaTela(`p`,mensagemTentativas);
document.getElementById('reiniciar').removeAttribute('disabled');
}else{
if(chute > numeroSecreto){
exibirTextoNaTela('p', 'o numero secreto é menor');
}else{
exibirTextoNaTela('p','o numero secreto é maior');
}
tentativas++;
limparCampo();
}
}
function numeroAleatorio(){
return parseInt(Math.random() * 10 + 1);
}
function limparCampo(){
chute = document.querySelector('input');
chute.value = '';
}```