Tell us what’s happening:
So this is the first condition : [ The function should check if name
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.]
My code
for (var i=0; i < contacts.length; i+=1) {
if (contacts[i].firstName === name && contacts[i].hasOwnProperty(prop) === true) {
return contacts[i].prop;
i don’t see anything wrong here?
there are 2 condition, both have to be true, so i put it together.
but when i try to
console.log(lookUpProfile(“Akira”, “likes”));
it is showing undefined?
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 (var i=0; i < contacts.length; i+=1) {
if (contacts[i].firstName === name && contacts[i].hasOwnProperty(prop) === true) {
return contacts[i].prop;
} else if (contacts[i].hasOwnProperty(prop) === false) {
return "No such property";
} return "No such contact";
}
// Only change code above this line
}
console.log(lookUpProfile("Akira", "likes"));
console.log(contacts[0].number)
**Your browser information:**
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36
.
Challenge: Profile Lookup
Link to the challenge: