Subir archivos a "/"

This commit is contained in:
2026-05-29 13:09:20 +00:00
parent 809d1538e5
commit 0e3008f15d
5 changed files with 48 additions and 0 deletions

13
Clase 6 ejercicio 3.js Normal file
View File

@@ -0,0 +1,13 @@
let maximo = 15;
let contador = 3; //Siempre tienen que estar los datos para trabajar
while (contador < maximo) {
console.log(contador);
contador += 3;
}
//RESTAR: contador -= 2;
//MULTIPLICAR: contador *= 4;
//DIVIDIR: contador /= 2;
//INCREMENTAR: contador++;
//DECREMENTAR: contador--;