Confused in Profile Look up chapter in Js course
Code that works:
function lookUpProfile(name, prop) {
for(let i = 0; i < contacts.length; i++){
if(contacts[i].firstName === name){
if(contacts[i].hasOwnProperty(prop)){
return contacts[i][prop]; ==**=> IF I CHANGE [prop] WITH .prop I GET AN ERROR**
}else{
return "No such property";
}
}
}
return "No such contact";
}
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.