From 2a2b79e3b2ebfc91b5ff2d005831f3426bf517f0 Mon Sep 17 00:00:00 2001 From: ShakaPursuit Date: Thu, 27 Apr 2023 10:49:09 -0400 Subject: [PATCH] I have made my changes to this file April 27,2023 --- index.js | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/index.js b/index.js index cd6e45d..80bd449 100644 --- a/index.js +++ b/index.js @@ -1,16 +1,22 @@ -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", - hometown: "The Boogie-Down - BX 🙅🏾‍♂️", - favoriteColors: ["gold", "navy blue", "forest green", "red"] -} + name: "Shaka", + hometown: "Brooklyn, Ny 🙅🏾‍♂️", + favoriteColors: ["purple", "blue", "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"+" "+meObj.name+","+" "+"and I'm from"+" "+meObj.hometown); // print out: "My favorite colors are {your favorite colors}" -} + console.log("My favorite colors are"+" "+ meObj.favoriteColors+"."); + } + + introduceMe(meObj) +