Con un simple uso de includes()
que aprendí un poco en ejercicios anteriores.
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Juego Secreto</title>
<style>
body {
background-color: LightSteelBlue;
}
h1 {
font-family: 'Courier New', Courier, monospace;
}
</style>
</head>
<body>
<h1>guiño: Fibonacci</h1>
<input />
<button>¿Tienes éste número?</button>
<script>
// variables ------------------------------>
const numeroGuardado = [1, 2, 3, 5, 8, 13];
var input = document.querySelector("input");
input.focus();
// funciones ------------------------------>
function verificar() {
if (numeroGuardado.includes(parseInt(input.value))) {
alert("¡Muy bien!");
} else {
alert("No, no es eso...");
}
input.value = "";
input.focus();
}
// programa ------------------------------->
var button = document.querySelector("button");
button.onclick = verificar;
</script>
</body>
</html>