hola compañeros les comparto mi codigo pd: le tuve que borrar los emojis
<!doctype html>
<meta charset="UTF-8">
<h1> JUEGO SECRETO</h1>
intrucciones: intenta descubrir el valor del numero secreto <br>
<input/>
<button> VERIFICAR SI ACERTO CON EL SECRETO1</button>
<script>
function imprimir(frase){
document.write(frase);
document.write("<br>");
}
var secreto=5;
var input=document.querySelector("input");
function verificar(){
if(parseInt(input.value) == secreto){
alert("usted acerto")
}
else{
alert("usted erró")
}
}
var button=document.querySelector("button");
button.onclick=verificar;
</script>