From a81e200d39c1c927e10a9daf98f28364adeb84fc Mon Sep 17 00:00:00 2001 From: anickacodes Date: Thu, 27 Apr 2023 11:09:37 -0400 Subject: [PATCH] Changes --- index.js | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/index.js b/index.js index cd6e45d..4c4fea3 100644 --- a/index.js +++ b/index.js @@ -1,16 +1,23 @@ -console.log("Hey you! Yeah you! Awesome Developer! You're doing Great Fam! 💪🧑‍💻🙌") +console.log(`Hey you! Yeah you! Awesome Developer! You're doing Great Fam! 💪🧑‍💻🙌`) const meObj = { - name: "Sam", + name: "Nicki", hometown: "The Boogie-Down - BX 🙅🏾‍♂️", - favoriteColors: ["gold", "navy blue", "forest green", "red"] + favoriteColors: ["teal ❤", "aqua", " and moon"] } 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}`) +console.log(`My favorite colors are ${personObj.favoriteColors}`) // print out: "My favorite colors are {your favorite colors}" +//console.log(introduceMe(meObj)) + } +introduceMe(meObj) +// console.log(`Hi, my name is ${meObj.name}, and I'm from ${meObj.hometown}`) +// console.log(`My favorite colors are ${meObj.favoriteColors}`) \ No newline at end of file