1
resposta

Desafio Concluído.

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Index</title>
        <script>

        function breakRow(){
            document.write("<br>");
            document.write("<br>");
        }

        function show(frase){
            document.write(frase);
            breakRow();
        }

        var númeroInicial = 30;
        var númeroFinal = 40;

        while(númeroInicial <= númeroFinal){
            if(númeroInicial == 33 || númeroInicial == 37){
                númeroInicial = númeroInicial + 1;
            }
            show("Número: " + númeroInicial);
            númeroInicial = númeroInicial + 1;
        }

        </script>
    </head>
    <body>

    </body>
</html>
1 resposta

Parabéns, ficou excelente!