From 231820b1e68228035704e4db2d3468a60d5333b6 Mon Sep 17 00:00:00 2001 From: Jeremy Montes Date: Thu, 27 Apr 2023 10:42:07 -0400 Subject: [PATCH] me and node forked cloned edits --- README.md | 12 ++++++++---- index.js | 12 +++++++----- 2 files changed, 15 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index b7e4fe1..b7c2b9a 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,9 @@ -# Change This - Make this About ✨YOU✨ +# ✨Jeremy Montes - A Cool and Calm Software Engineer in the Making✨ -## There's an index.js file in this code base. You have two goals: -- Alter the `meObj` so it matches relevant information about ✨YOU✨ -- Complete the logic in the `introduceMe` function to print out the 2 statments that the comments are guiding you to print out. \ No newline at end of file +## Fun Facts About Me: + +- ✨I play 5 instruments✨ +- I worked as an EMT for five years. +- I have a B.S. in Psychology. +- I am Haitian American +- I love going on adventures and taking risks. \ No newline at end of file diff --git a/index.js b/index.js index cd6e45d..0c15773 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"] + name: "Jeremy", + hometown: "Harlem 🙅🏾‍♂️", + favoriteColors: ["burgundy", "blue", "brown"] } 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}" } +introduceMe(meObj) \ No newline at end of file