<!DOCTYPE html>
<html lang="es">
<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>
<h1>Juego Secreto</h1>
<input />
<button>Verificar si acertocon el secreto</button>
<script>
let secreto=Math.round(Math.random()*10);
let input=document.querySelector("input");
function verificar(){
if(parseInt(input.value)===secreto){
alert("Ganaste!!!");
}else{
alert("Usted perdio");
}
input.value="";//limpiar el input
input.focus();
}
let button=document.querySelector("button");
button.onclick=verificar;
</script>
</body>
</html>