<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="./images/Adivinanzas.png">
<title>Juego Secreto V2</title>
</head>
<body>
<h1><center>Juego Secreto V2</center></h1>
<input/>
<button>Verificar si acerto con el Secreto</button>
<script>
var secretos = [3,5,7,9];
//var secreto = Math.round(Math.random()*1);
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("Usted Acerto");
encontrado = true;
breack;
}
}
if (encontrado == false){
alert("Usted Erró");
}
input.value = "";
input.focus();
}
var button = document.querySelector("button");
button.onclick = verificar;
/*var heroes = ["Superman", "Thor", "Batman", "Mujer Maravilla"];
for( var i = 0; i < heroes.length; i++) {
alert(heroes[i]);
}*/
</script>
</body>
</html>