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
}
