From a661bae965f39a440b02e57772225bd156c9f235 Mon Sep 17 00:00:00 2001 From: Salomon Balthazar Date: Thu, 27 Apr 2023 11:21:20 -0400 Subject: [PATCH] Dan's Branch --- index.js | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/index.js b/index.js index cd6e45d..135b725 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: "Daniel", + hometown: "Port-au-Prince 🇭🇹", + favoriteColors: [" black", " blue"," red"] } function introduceMe (personObj){ // print out: "Hi, my name is {your name}, and I'm from {your hometown}" - +let introStatement = `Hi, my name is ${personObj.name}, and I'm from ${personObj.hometown}.` // print out: "My favorite colors are {your favorite colors}" + let favoriteColorsStatement = `My favorite colors are ${personObj.favoriteColors}.` + console.log(introStatement); + console.log(favoriteColorsStatement); } +console.log(introduceMe(meObj)) \ No newline at end of file