I have taken a course and I got a project here.
    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){
    }
    // Change these values to test your function
    lookUpProfile("Akira", "likes");
So "Kristian", "lastName" should return "Vos" And "Sherlock", "likes" should return ["Intriguing Cases", "Violin"] I am confused what to do here 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" I want to know the part about how do I check if the name exists.
 
     
     
    