//CONTADOR DE 1 A 10
let cont=1;
while(cont<=10){
console.log(cont);
cont++;
}
//CONTADOR DE 10 A 0
let cont=10;
while(cont>=0){
console.log(cont);
cont--;
}
//CONTADOR DE NUM INPUTUSER A 0
let num=prompt('Ingrese un número: ');
while(num>=0){
console.log(num);
num--;
}
//CONTADOR DE 0 A NUM INPUTUSER
let num=prompt('Ingrese un número: ');
let cont=0;
while(cont<=num){
console.log(cont);
cont++;
}