<meta charset="UTF-8">
<script>
function pulaLinha() {
document.write("<br>");
document.write("<br>");
}
function mostra(frase) {
document.write(frase);
pulaLinha();
}
var limiteDeNumeroPar = parseInt(prompt("entre com o limite de numero par:"));
var numeroPar =2;
while(numeroPar <= limiteDeNumeroPar) {
mostra("O numero " + numeroPar + " é par!");
numeroPar= numeroPar + 2;
}
mostra("Acabou...")
</script>