What i am missing here

Tell us what’s happening:
Describe your issue in detail here.

**Your code so far**

// 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(name, prop){
// Only change code below this line
for (let x = 0; x < contacts.length; x++) {
if (contacts[x].firstname === name) {
    if (contacts[x].hasownProperty(prop)) {
        return contacts [x][prop];
    } else {
        return "No such property";
    }
}
}
return "No such contact"
// Only change code above this line
}

lookUpProfile("Akira", "likes");

**Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36.

Challenge: Profile Lookup

Link to the challenge:

Hello there.

Do you have a question?

If so, please edit your post to include it in the Tell us what’s happening section.

Learning to describe problems is an important part of learning how to code.

Also, the more information you give us, the more likely we are to be able to hhelp

I’d double check your capitalization and use of spaces.

I second that you really need to describe what is happening. Don’t just post a non-working code. Tell what kind of error message you’re getting. What you’re trying to do. Etc. Etc.

JS is case sensitive. myName is not the same as myname. For example,

console.log("hello".toUpperCase());

works but

console.log("hello".toUppercase());

won’t.

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