From 21f14585f8c16c76e5d5588d4302df8d8d2f2296 Mon Sep 17 00:00:00 2001 From: Tyrell Date: Thu, 27 Apr 2023 11:10:54 -0400 Subject: [PATCH 1/2] Changed the information to be person to me --- index.js | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/index.js b/index.js index cd6e45d..e6bd230 100644 --- a/index.js +++ b/index.js @@ -3,14 +3,19 @@ console.log("Hey you! Yeah you! Awesome Developer! You're doing Great Fam! 💪 const meObj = { - name: "Sam", - hometown: "The Boogie-Down - BX 🙅🏾‍♂️", - favoriteColors: ["gold", "navy blue", "forest green", "red"] + name: "Tyrell", + hometown: "Brookln", + favoriteColors: ["green", "purple"] } function introduceMe (personObj){ + console.log(`Hi, my name is ${personObj.name}, and I'm from ${personObj.hometown}`) // print out: "Hi, my name is {your name}, and I'm from {your hometown}" + console.log(`My favorite colors are ${personObj.favoriteColors[0]} and ${personObj.favoriteColors[1]} `) // print out: "My favorite colors are {your favorite colors}" } + +introduceMe(meObj); + From 5b468b2971385092f18af872cb89a6a53a42e917 Mon Sep 17 00:00:00 2001 From: Tyrell Date: Thu, 27 Apr 2023 11:32:24 -0400 Subject: [PATCH 2/2] Made changes --- index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/index.js b/index.js index e6bd230..46f74c4 100644 --- a/index.js +++ b/index.js @@ -19,3 +19,4 @@ function introduceMe (personObj){ introduceMe(meObj); +