From c1071cfc5007dc5d84e13031872504005d2c4761 Mon Sep 17 00:00:00 2001 From: Valenti Taiel <45264983@terciariourquiza.edu.ar> Date: Thu, 14 May 2026 11:46:46 -0300 Subject: [PATCH] resolucion sexto ejercicio --- ejercicios.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ejercicios.js b/ejercicios.js index 76a896b..d90bf5e 100644 --- a/ejercicios.js +++ b/ejercicios.js @@ -39,3 +39,8 @@ const frutas = ["Ananá", "Manzana", "Banana"] for (const fruta of frutas){ console.log(fruta); } +//Sexto Ejercicio +function presentarse(nombre, edad){ + return `Me llamo ${nombre} y tengo ${edad} años.`; +} +console.log(presentarse("Taiel", 22)); \ No newline at end of file