Plz help ...I am not able to find error in it

Tell us what’s happening:

function lookUpProfile(name, prop){

for(var i=0;i<contacts.length;i++)

{

    if(contacts[i].firstName == name && contacts[i].hasOwnProperty==prop)

        {

           return contacts[i][prop];

        }

    if(contacts[i].firstName!=name)

        {return "No such contact";}

    if(contacts[i].hasOwnProperty != prop)

        {return "No such property";}

}

}


**Your code so far**
      
```js

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){
for(var i=0;i<contacts.length;i++)
{
  if(contacts[i].firstName == name && contacts[i].hasOwnProperty==prop)
      {
         return contacts[i][prop];
      }
  if(contacts[i].firstName!=name)
      {return "No such contact";}
  if(contacts[i].hasOwnProperty != prop)
      {return "No such property";}
}
}
/*function lookUpProfile(name, prop) {
for (var 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";
}*/

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/84.0.4147.135 Safari/537.36.

Challenge: Profile Lookup

Link to the challenge:

When i run your code it gives the next error on this line


function lookUpProfile(name, prop){
for(var i=0;i<contacts.length;i++)
{

The error says its already being declared meaning its already in use before

I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).