From a1fa0475974deb21d7e6544a4e3742737740396e Mon Sep 17 00:00:00 2001 From: Amir Walker Date: Thu, 27 Aug 2026 13:49:05 -0700 Subject: [PATCH] Added sayHello and introduceYourself --- 2-js-basics/2-functions-methods/functions-practice.js | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/2-js-basics/2-functions-methods/functions-practice.js b/2-js-basics/2-functions-methods/functions-practice.js index e69de29bb..e476c2baa 100644 --- a/2-js-basics/2-functions-methods/functions-practice.js +++ b/2-js-basics/2-functions-methods/functions-practice.js @@ -0,0 +1,9 @@ + +function sayHello(){ + console.Log("Hello"); +} + + +function introductYourself(name){ + console.Log(`Hi, my name is ${name}`) +} \ No newline at end of file