From 253842084d951e67bb041d655749de3e209189d7 Mon Sep 17 00:00:00 2001 From: "yulondawyatt@gmail.com" Date: Thu, 27 Apr 2023 11:17:53 -0400 Subject: [PATCH 1/2] My first github try --- index.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/index.js b/index.js index cd6e45d..890729f 100644 --- a/index.js +++ b/index.js @@ -3,14 +3,16 @@ 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"] + myName: "Londa", + hometown: "BedStuy, Brooklyn", + favoriteColors: ["coral", "salmon", "red-orange"] } function introduceMe (personObj){ // print out: "Hi, my name is {your name}, and I'm from {your hometown}" + console.log(`Hi, my name is ${personObj.myName}, and I'm from ${personObj.hometown}`); // print out: "My favorite colors are {your favorite colors}" } + introduceMe("meObj"); \ No newline at end of file From d00dfbd0a303013200da03b06ef42a7c81085f85 Mon Sep 17 00:00:00 2001 From: "yulondawyatt@gmail.com" Date: Thu, 27 Apr 2023 11:39:33 -0400 Subject: [PATCH 2/2] completed task --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 890729f..537c4fb 100644 --- a/index.js +++ b/index.js @@ -15,4 +15,4 @@ function introduceMe (personObj){ console.log(`Hi, my name is ${personObj.myName}, and I'm from ${personObj.hometown}`); // print out: "My favorite colors are {your favorite colors}" } - introduceMe("meObj"); \ No newline at end of file + introduceMe(meObj); \ No newline at end of file