Profile Lookup challenge within Basic JavaScript
So here is the challenge that I am stuck on. Any help and advice to get me to solve it will be appreciated.
Challenge Directions:
We have an array of objects representing different people in our contacts lists.
A lookUpProfile function that takes firstName and a property (prop) as arguments has been pre-written for you.
The function should check if firstName 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 firstName does not correspond to any contacts then return “No such contact”
If prop does not correspond to any valid properties then return “No such property”
//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(firstName, prop){
// Only change code below this line
if (contacts.firstName === true && contacts.hasOwnProperty(prop) === true) {
return contacts[prop];
} else if (contacts.firstName !== true) {
return "No such contact";
} else (contacts.hasOwnProperty(prop !== true)); {
return "No such property";
}
// Only change code above this line
}
// Change these values to test your function
lookUpProfile("Akira", "likes");
Before this challenge came up I was going through arrays with for and while loops. I say this because it is probably related, but I am not sure how to tie that into this challenge, if I need to.
What I really need help with is understanding how to access the property of an object nested within an array. Maybe I am more lost than that, but I appreciate any help on this.