From 5a9719891299fa007a54a829464286a57091a192 Mon Sep 17 00:00:00 2001 From: Geronimo Hidalgo <45217034@terciariourquiza.edu.ar> Date: Wed, 20 May 2026 17:31:59 -0300 Subject: [PATCH] feat: add function for presentation --- ejercicios.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/ejercicios.js b/ejercicios.js index 60a8866..567b4e4 100644 --- a/ejercicios.js +++ b/ejercicios.js @@ -48,3 +48,11 @@ for (const fruta of frutas){ console.log(fruta); } +// Sexto ejercicio + +function presentation(name,age){ + const p = `Hola mi nombre es ${name} y mi edad es ${age}`; + return p +} + +console.log(presentation(name,age));