1
resposta

Coloquei meu array para gerar numeros Random.

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Jogo do Advinha</title>
</head>

<h2>Jogo do advinha com Arrey</h2>
<body>

    <input/>
    <button>Numeros da mega!</button>


    <script>


        var segredos = [Math.round( Math.random() * 10),Math.round( Math.random() * 10),Math.round( Math.random() * 10),Math.round( Math.random() * 10)];

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

         function verifica () {    

             for (var posicao = 0; posicao < 4; posicao ++) {

             if (entrada.value == segredos[posicao]) {

                alert("Você ACERTOU!");
                break;
            } else {

                alert("Você ERROU!");
            }


         }

                entrada.value = "";
                entrada.focus();
    }    

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

        button.onclick = verifica;

    </script>

</body>
</html>
1 resposta

Oi Rodney

Muito bom! Parabéns pelo empenho nos estudos!

Continue praticando e qualquer dúvida pode contar com a gente.