<input/>
<button> Verificar si el usuario acertó al número secreto </button>
<script>
//let numeroSecreto = 8;
let input = document.querySelector("input");
//INTEGRANDO MATH-ROUND Y RANDOM PARA CREAR UN NUMERO ALEATORIO.
let numeroSecreto = Math.round(Math.random()*10);
function verificar(){
if(parseInt(input.value) == numeroSecreto){
alert("Felicidades! , usted acertó con el número secreto.");
}
else{
alert("Lamentablemente ha fallado, vuelva a intentarlo por favor.");
}
input.value = "";
input.focus ();
}
let button = document.querySelector("button");
button.onclick = verificar;
</script>