// Desafio 1
let ContadorCrescente = 1;
while (ContadorCrescente <=10) {
alert (` Número ${ContadorCrescente}`);
ContadorCrescente++
}
// Desafio 2
let ContadorDecrescente = 10;
while (ContadorDecrescente >=0) {
alert (` Número ${ContadorDecrescente}`);
ContadorDecrescente--
}
// Desafio 3
let ContagemDecrescente = prompt('Digite um numero aqui');
while (ContagemDecrescente >= 0) {
alert (`${ContagemDecrescente}`);
ContagemDecrescente--
}
// Desafio 4
let ContagemCrescente = prompt('Digite um numero aqui');
let Numero = 0;
while (Numero <= ContagemCrescente) {
alert (`${Numero}`);
Numero++
}