EJERCICIO 1
contador = 0;
while(contador < 10) {
contador +=1
alert(contador)
}
EJERCICIO 2
let contador = 10;
while (contador >= 0) {
alert(contador);
contador-=1;
}
EJERCICIO 3
let tope = parseInt(prompt('dame un numero: '));
while (tope >= 0) {
alert(tope);
tope-=1;
}
EJERCICIO 4
let contador=0;
let tope = parseInt(prompt('dame un numero'));
while (contador<= tope) {
alert(contador);
contador+=1;
}