<meta charset="UTF-8">
<h1>Juego Secreto</h1>
<input/>
<button>Verficar si acertó el secreto</button>
<br>
<br>
<button onclick="revelarSecreto()">Revelar numero secreto</button>
<script>
var secreto = Math.round(Math.random()*10);
var input = document.querySelector("input");
input.focus();
function verificar(){
if(parseInt(input.value) == secreto){
alert("Usted acertó")
}
else{
alert("Usted no acertó")
}
input.value = "";
input.focus();
}
function revelarSecreto(){
document.write ("El numero secreto es: " + secreto);
}
var button = document.querySelector("button");
button.onclick = verificar;
</script>