<meta charset = "UTF-8" />
<input/>
<button> Adivina: Cual es el número 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("Felicitaciones, usted acertó!");
}
else{
alert("Usted erró");
}
input.value = "";
input.focus();
}
var button = document.querySelector("button");
button.onclick = verificar;
</script>