<meta charset="UTF-8">
<input/>
<button>Verificar si adivina el número secreto</button>
<script>
function aleatorio()
{
return Math.round(Math.random()*10);
}
function sortearNumeros(cantidad)
{
var secretos = [];
var contador = 1;
while(contador <= cantidad)
{
numeroAleatorio = aleatorio();
secretos.push(numeroAleatorio);
contador++;
}
return(secretos)
}
var secretos = sortearNumeros(4);
console.log(secretos)
var input = document.querySelector("input");
input.focus();
function verificar()
{
var encontrado = false;
for(var position = 0; position < secretos.length; position++)
{
if(parseInt(input.value) == secretos[position])
{
alert("Usted Adivinó");
encontrado = true;
break;
}
}
if (encontrado == false)
{
alert("Usted no Adivinó");
}
input.value = " ";
input.focus();
}
var button = document.querySelector("button");
button.onclick = verificar;
</script>