Ejercicio 7 completado

This commit is contained in:
2026-04-30 16:11:51 -03:00
parent d95a8ac7b2
commit 2e4252f5ad

View File

@@ -30,4 +30,9 @@ for (let i=3; i < maximo;i = i+3){
let frutas = ["Manzana", "Banana", "Frutilla"];
for (let fruta of frutas) {
console.log(fruta);
}
}
function presentarse(nombre, edad){
return ("me llamo "+nombre+" y tengo "+ edad+ " años.")
}
console.log(presentarse("Alejo",20))