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

7
Clase 6 ejercicio 4.js Normal file
View File

@@ -0,0 +1,7 @@
let maximo = 15;
let i = 0 //no esta haciendo nada
for (let i = 3; i < maximo; i+=3) { //variable maximo, el 15 me lo estaba imprimiendo despues
console.log(i);
}
console.log(maximo);