Tell us what’s happening:
Describe your issue in detail here.
Hi,
I’m a bit confused as of why it’s said to use “contact[prop]” to check whether given property ( prop
) is a property of that contact?
Another issue is why use “return ‘No such contact’” outside of the for loop…?
Thanks in advance
Your code so far
// Setup
var contacts = [
{
"firstName": "Akira",
"lastName": "Laine",
"number": "0543236543",
"likes": ["Pizza", "Coding", "Brownie Points"]
},
{
"firstName": "Harry",
"lastName": "Potter",
"number": "0994372684",
"likes": ["Hogwarts", "Magic", "Hagrid"]
},
{
"firstName": "Sherlock",
"lastName": "Holmes",
"number": "0487345643",
"likes": ["Intriguing Cases", "Violin"]
},
{
"firstName": "Kristian",
"lastName": "Vos",
"number": "unknown",
"likes": ["JavaScript", "Gaming", "Foxes"]
}
];
function lookUpProfile(name, prop){
// Only change code below this line
for(const contact of contacts){
if(name === contact.firstName){
return contact[prop] || "No such property"
}
} return "No such contact"
}
lookUpProfile("Akira", "likes")
**Your browser information:**
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36
.
Challenge: Profile Lookup
Link to the challenge: