main #12

Open
ojeda.alexis wants to merge 6 commits from ojeda.alexis/javascript-primeros-ejercicios:main into main
Showing only changes of commit 5e23c7822d - Show all commits

View File

@@ -18,4 +18,11 @@ if (edad > 18) {
console.log(`Hola, ${nombre}!, usted esta en su adolescencia.`);
} else {
console.log(`Hola, ${nombre}!, usted esta en su infancia.`);
}
let maximo = 0;
while (maximo < 15) {
console.log(maximo);
maximo = maximo + 3;
}