<meta charset="UTF-8">
<h1>JUEGO - ADIVINA EL SECRETO</h1>
<br>
<br>
<h3> Dijite el secreto</h3>
<input/>
<button>Verificar</button>
<script>
function aleatorio()
{
return Math.round(Math.random()*10);
}
function sortearNumeros(cantidad)
{
var secretos=[];
var contador=1;
while (contador<=cantidad)
{
var numeroAleatorio=aleatorio();
secretos.push(numeroAleatorio);
contador ++;
}
return secretos;
}
var secretos =sortearNumeros(5);
console.log(secretos);
var input=document.querySelector("input");
input.focus();
function verificar()
{
var encontrado=false;
for(var posicion=0; posicion<secretos.length;posicion++)
{
if (parseInt(input.value)==secretos[posicion])
{
alert("Felicidades, ust acerto...");
encontrado=true;
break;
}
if (encontrado==false)
{
alert("fallaste");
}
}
input.value="";
input.focus();
}
var button = document.querySelector("button");
button.onclick = verificar;
</script>