Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.
## 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.
12 changes: 7 additions & 5 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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)