We have an array of objects representing different people in our contacts lists.
A lookUp 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"
This is the code, I have been stuck for a few hours on this one now :(
//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": ["Intruiging Cases", "Violin"]
},
{
"firstName": "Kristian",
"lastName": "Vos",
"number": "unknown",
"likes": ["Javascript", "Gaming", "Foxes"]
},
];
function lookUp(firstName, prop){
// Only change code below this line
for(i = 0; i < contacts.length; i++) {
if(firstName == contacts.firstName && contacts.hasOwnProperty(prop)) {
return contacts.firstName + "" + contacts[prop];
}
else if(firstName !== contacts.firstName) {
return "No such contact";
}
else if(contacts.hasOwnProperty(prop) === false) {
return "No such property";
}
}
// Change these values to test your function
lookUp("Akira", "likes");