From b34075e3775bb1c8daa12dab6496d079d7cba270 Mon Sep 17 00:00:00 2001 From: Luca Scarano <47073568@terciariourquiza.edu.ar> Date: Fri, 8 May 2026 15:37:48 -0300 Subject: [PATCH] ejercicio 7 --- ejercicios.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ejercicios.js b/ejercicios.js index e05358c..4ce9440 100644 --- a/ejercicios.js +++ b/ejercicios.js @@ -20,3 +20,8 @@ const frutas = ["manzana", "sandia", "arandano"] for (const fruta of frutas) { console.log(fruta); } +//ejercicio 7 +function presentarse(nombre,edad){ + return `Hola me llamo ${nombre} y tengo ${edad}` +} +console.log(presentarse("Luca",20)) \ No newline at end of file