Subida de TP JS #3

Open
benincasa.nery wants to merge 9 commits from benincasa.nery/javascript-primeros-ejercicios:main into main
Showing only changes of commit bf2fb0ecc4 - Show all commits

View File

@@ -33,3 +33,8 @@ while (actual < maximo) {
console.log(actual);
actual += 3;
}
// ESTRUCTURA CON FOR
for (let i = 3; i < maximo; i += 3) {
console.log(i);
}