main #18

Open
hidalgo.geronimo wants to merge 8 commits from hidalgo.geronimo/javascript-primeros-ejercicios:main into main
Showing only changes of commit 03a14f21b2 - Show all commits

View File

@@ -6,7 +6,6 @@ console.log("Archivo vinculado exitosamente");
// Primer ejercicio
const name = "Geronimo"
const age = 22
@@ -41,3 +40,11 @@ while (n < maximo) {
for (let i=3; i < maximo; i+=3){
console.log(i)
}
// Quinto ejercico
const frutas=["manzana","kiwi","frutilla"]
for (const fruta of frutas){
console.log(fruta);
}