<!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">
<title>Juego Secreto</title>
</head>
<body>
<input/>
<br>
<button>Verificar si acerto con el secreto</button>
<script>
var secretos = [3,5,7,9,10];
// var secreto =Math.round(Math.random()*10);
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
break;
}
}
if (encontrado==false){
alert("usted erro");
}
input.value="";
input.focus();
}
var button=document.querySelector("button");
button.onclick=verificar;
</script>
</body>
</html>