<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Juego Secreto</title>
</head>
<section>
<input type="text" placeholder="Ingresa un dígito">
<button>Verifica si adivinaste</button>
</section>
<body>
<script>
let secretos = [3, 5, 7, 9],
input = document.querySelector("input"),
button = document.querySelector("button"),
encontrado = false;
input.focus();
const verificar = () => {
for(let el in secretos) {
if(parseInt(input.value) === secretos[el]) {
alert(`Felicidades Adivinaste !!!`);
encontrado = true;
break;
}
};
if (encontrado === false) {
alert(`No adivinaste, intenta nuevamente`);
}
input.value = "";
input.focus();
};
button.onclick = verificar;
</script>
</body>
</html>