From aef3131fb1a214c3bbd05435f5c6c2f501d44adb Mon Sep 17 00:00:00 2001 From: Natyka Callwood Date: Thu, 27 Apr 2023 11:16:58 -0400 Subject: [PATCH 1/2] changes --- index.js | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/index.js b/index.js index cd6e45d..51a1155 100644 --- a/index.js +++ b/index.js @@ -3,14 +3,18 @@ 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: "Natyka", + hometown: "The Virgin Islands to The Boogie-Down - BX 🙅🏾‍♂️,STAND UP", + favoriteColors: ["red", "yellow", "purple", "pink"] } function introduceMe (personObj){ // print out: "Hi, my name is {your name}, and I'm from {your hometown}" +console.log(`Hi, my name is ${personObj.name}, and I'm from ${personObj.hometown}.`) // print out: "My favorite colors are {your favorite colors}" +console.log(`My favorite colors are ${personObj.favoriteColors}.`) } + +introduceMe(meObj) From 5a3e189a4c6d9b72b277429492b6817c0270ffb8 Mon Sep 17 00:00:00 2001 From: Natyka Callwood Date: Thu, 27 Apr 2023 11:32:29 -0400 Subject: [PATCH 2/2] added more changes --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 51a1155..dba40b1 100644 --- a/index.js +++ b/index.js @@ -4,7 +4,7 @@ console.log("Hey you! Yeah you! Awesome Developer! You're doing Great Fam! 💪 const meObj = { name: "Natyka", - hometown: "The Virgin Islands to The Boogie-Down - BX 🙅🏾‍♂️,STAND UP", + hometown: "The Virgin Islands to The Boogie-Down - BX 🙅🏾‍♂️, STAND UP", favoriteColors: ["red", "yellow", "purple", "pink"] }