<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Todos os números entre 30 a 40, exceto 33 e 37!</title>
</head>
<body>
<h1>Todos os números entre 30 a 40, exceto 33 e 37!</h1>
<script>
function pulaLinha() {
document.write("<br>")
document.write("<br>")
}
function mostra(frase) {
document.write(frase)
pulaLinha()
}
var contador = 20
while(contador >= 0) {
mostra(contador)
contador--
}
mostra('FIM!!')
</script>
</body>
</html>