freeCodeCamp Challenge Guide: Profile Lookup

Profile Lookup

We have an array of objects representing different people in our contacts lists.

A lookUpProfile function that takes name and a property (prop) as arguments has been pre-written for you.

The function should check if name is an actual contact’s firstName and the given property (prop) is a property of that contact.

If both are true, then return the “value” of that property.

If name does not correspond to any contacts then return the string No such contact.

If prop does not correspond to any valid properties of a contact found to match name then return the string No such property.

MySolution

function lookUpProfile(name, prop) {
// Only change code below this line
let x;
for(x of contacts){
if(name === x.firstName){
if (x.hasOwnProperty(prop)){
return x[prop]
}
return “No such property”
}
}
return "No such contact
}
ScreenHunter_03 Nov. 05 00.25

1 Like

In the future, please use the “Ask for Help” link under the “Get Help” button. Doing so will automatically add your current code properly and provide a link to the challenge. Then there will be no need for you to copy the instructions in here or give a pic of your code.

Also, the code you pasted in here appears to work and pass the challenge. It’s great that you were able to solve it, but please don’t post complete solutions in here.

new kid on the block
and Thanks for replying I will follow that.

I’ve been working on this for days. Thanks for the help :slight_smile:

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.