Nesse eu tentei usar o While pra limitar o número de tentativas mas não funcionou, porque?
<meta charset="UTF-8">
<input/>
<button>Comprare com o meu segredo</button>
<script>
var segredo= Math.round(Math.random()*10);
var input = document.querySelector ("input");
input.focus ();
var tentativas = 1;
while(tentativas <=3) {
function verifica (){
if(input.value==segredo){
alert("VOCE ACERTOU!");
break;
} else {
alert ("VOCE ERROU!");
}
input.value = "";
input.focus ();
}
tentativas++;
}
var button = document.querySelector ("button");
button.onclick = verifica;
</script>