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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Change This - Make this About ✨YOU✨
# Aspiring Full Stack Developer :nerd_face:

## There's an index.js file in this code base. You have two goals:
- Alter the `meObj` so it matches relevant information about ✨YOU✨
Expand Down
11 changes: 6 additions & 5 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,15 @@ 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: "Oscar",
hometown: "Brentwood, NY",
favoriteColors: ["red", "blue", "russian violet"]
}


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)