Confesso que estou meio bugado ... mais consegui
<html>
<meta charset="utf-8">
<center>
<h1> Jogo do adivinha</h1>
<h4> Você tem 1 tentativas, porem você esta com sorte, o PC vai ajudar você!</h4>
<p></p><strong> Tenta acerta o número </strong></p>
<input/>
<button> Clique aqui</button>
</center>
</html>
<script>
function sorteia() {
return Math.round(Math.random() * 10);
}
function sorteiaNumeros(quantidade) {
var segredos = [];
var numero = 1;
while(numero <= quantidade) {
var numeroAleatorio = sorteia();
var achou = false;
if (numeroAleatorio !== 0) {
for(var posicao = 0; posicao < segredos.length; posicao++) {
if(segredos[posicao] == numeroAleatorio){
achou = true;
break;
}
}
if (achou == false) {
segredos.push(numeroAleatorio);
numero++;
}
}
}
return segredos;
}
var segredos = sorteiaNumeros(3);
console.log(segredos);
var input = document.querySelector("input");
input.focus();
function verifica() {
var achou = false;
for(var posicao = 0; posicao < segredos.length; posicao++) {
if(input.value == segredos[posicao]) {
alert("Muito bem acertou os segredos eram "+ segredos);
achou = true;
break;
}
}
if(achou == false) {
alert("Que pena você erro! Tenta mais uma vez");
}
input.value = "";
input.focus();
}
var button = document.querySelector("button");
button.onclick = verifica;
</script>