From 2e4252f5ad25c17103127d34d6d4eb8adf1c46b4 Mon Sep 17 00:00:00 2001 From: Santi <38596280@terciariourquiza.edu.ar> Date: Thu, 30 Apr 2026 16:11:51 -0300 Subject: [PATCH] Ejercicio 7 completado --- ejercicios.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/ejercicios.js b/ejercicios.js index 352eaf3..8e1c5d1 100644 --- a/ejercicios.js +++ b/ejercicios.js @@ -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); -} \ No newline at end of file +} + +function presentarse(nombre, edad){ + return ("me llamo "+nombre+" y tengo "+ edad+ " aƱos.") +} +console.log(presentarse("Alejo",20)) \ No newline at end of file