Profile Lookup_error

Tell us what’s happening:

Can anyone please tell me where I did mistake.

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

  return "No such contact";

  }
      
// Only change code above this line
}

// Change these values to test your function
lookUpProfile("Akira", "likes");

Your browser information:

Your Browser User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36.

Link to the challenge:

You need to work on formatting your code, that’s why you probably made this mistake… The following line of code return "No such contact"; needs to go after your loop (right now is inside, which causes your loop to iterate once)

1 Like

yeah thank you. It worked.

same error here
if you find a solution please help me also

please share your code.