From c514f6535a478a6a0969a56bdf3b4da5de411725 Mon Sep 17 00:00:00 2001 From: + <+> Date: Wed, 4 Mar 2026 22:03:25 -0500 Subject: [PATCH] Completed intro to functions practice --- index.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/index.js b/index.js index 530633e..98d2c9d 100644 --- a/index.js +++ b/index.js @@ -1 +1,5 @@ // Follow along with the examples here +function introduce(name) { + return `Hi, my name is ${name}`; +} +console.log(introduce("Danielle"));