2
respostas

Esse código sorteia um número novo automaticamente. Gostaram? kk

function sorteia(numero){ return Math.round(Math.random()*n); }

var segredo = sorteia(10);

var input = document.querySelector("input");
    input.focus();

function verifica() {

    if(input.value == segredo) {

    alert("Você ACERTOU!");
    segredo = sorteia(10);

    } else {

    alert("Você ERROU!!!!!!!!" + segredo);
    segredo = sorteia(10);
    }

            input.value = "";
            input.focus();

}

var button = document.querySelector("button");

button.onclick = verifica;
2 respostas

Boooom, ta no caminho certo!!

Pensei a mesma coisa, só não tive a ideia de criar uma função sorteia() rs

<meta charset="UTF-8">
<input/>
<button>Compare com o meu segredo</button>
<script>
    var segredo=Math.round(Math.random()*10);
    var input=document.querySelector("input");
    input.focus();
    function verifica(){
        if(input.value==segredo){
            alert("Você ACERTOU!");
            segredo=Math.round(Math.random()*10);
        }else{
            alert("Você ERROU!!!!!!!!");
        }
        input.value="";
        input.focus();
    }
    var button=document.querySelector("button");
    button.onclick=verifica;
</script>