alert (' Seja bem vindo ao jogo do numero secreto'); let numeroMaior = 2000; let numeroSecreto = parseInt(Math.random() * numeroMaior + 1 ); console.log (numeroSecreto); let chute; let tentativas = 1;
// Enquanto chute não for igual ao numero Secreto.
while (chute != numeroSecreto){
chute = prompt (Escolha um numero entre 1 a ${numeroMaior}
);
// Se chute for igual ao numero Secreto.
if (chute == numeroSecreto){
break;
} else {
if ( chute > numeroSecreto){
alert (O numero Secreto é menor que ${chute}
);
} else {
alert (O numero secreto é maior que ${chute}
);
}
// Tentativas = tentativas + 1.
tentativas++;
}
}
let palavraTentativa = tentativas > 1 ? 'tentativas' : 'tentativa';
//Operador ternário
alert(Isso ai! Voce descobriu o número secreto ${numeroSecreto} com ${tentativas} ${palavraTentativa}
);
console.log('acertou o numero');