<meta charset="UTF-8">
<script>
function escrevaL() {
document.write("<br>");
}
function escreva(frase) {
document.write(frase);
escrevaL();
}
// A variável "contador" recebe o valor 20;
var contador = 20;
// a função while irá subtrair 1 valor até chegar a 0;
while (contador >= 0) {
escreva(contador);
contador = contador - 1;
}
escreva("Fim");
</script>