2
respostas

Alguém pode me dizer se fiz da forma correta?

Galera fui fazendo do meu jeito mas não se está certo...

<!DOCTYPE html>
<meta charset="UTF-8">

<script>
    function writeDown(sentence) {
        document.write(sentence);
        space();
    }

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

    var yearOne = 1500;
    var yearActually = 2019;
    var generation = 28;
    var media = (yearActually - yearOne) / generation;
    writeDown("Se passaram " + Math.round(media) + " gerações");
</script>
2 respostas

Oi Igor tudo bem?

Está correto sim. Continue assim e bons estudos!!!

Está correto, Igor, parabéns.