var secreto= Math.round(Math.random()*5); var input = document.querySelector("input");
function verificar(){ if( parseInt(input.value)== secreto){ alert("Has adivinado el numero"); }else{ alert("Has fallado. Vuelve a intentarlo"); } };
var button = document.querySelector("button"); button.onclick = verificar;