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 e81887d20a - Show all commits

View File

@@ -24,3 +24,12 @@ if (edad >= 18) {
} else {
console.log("Eres niño");
}
const maximo = 15;
let actual = 3;
// ESTRUCTURA CON WHILE
while (actual < maximo) {
console.log(actual);
actual += 3;
}