<meta charset="utf-8">
<input/>
<button>vereficar si acerto con el secreto</button>
<script>
var secreto = Math.round(Math.random()*10);
var input = document.querySelector("input")
input.focus();
function verificar() {
// body...
if(parseInt(input.value) == secreto){
alert("Usted acertò");
}
else {
alert("Usted errò")
}
input.value ="";
input.focus();
}
var button = document.querySelector("button");
button.onclick = verificar;
</script>