Profile Lookup, no se que hago mal en este codigo

Continuing the discussion from freeCodeCamp Challenge Guide: Profile Lookup:

function lookUpProfile(firstName, prop){
// Only change code below this line
for (var i = 0; i < contacts.length ; i++){
  if(contacts[i].firstName === firstName){
    if (contacts[i].hasOwnProperty(prop)){
      return contacts[i][prop];
    }else{
      return"No such property";
    }
  }else{
    return"No such contact";
  }
}
// Only change code above this line
}

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

bracket notation= "No such contact"
dot notation= undefined.

sorry my english, but why? im stuck here

1 Like