Skip to content

Instantly share code, notes, and snippets.

@afrieirham
Created February 9, 2019 13:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save afrieirham/07796249745bd35d94bc67f1e1cccae3 to your computer and use it in GitHub Desktop.
Save afrieirham/07796249745bd35d94bc67f1e1cccae3 to your computer and use it in GitHub Desktop.
Basic JavaScript: Profile Lookup #FCC
//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(let i=0; i<=contacts.length; i++){
//Check if it's the end of array
if(i==contacts.length){
return 'No such contact';
}
if(contacts[i].firstName == name){
if(contacts[i].hasOwnProperty(prop)){
return contacts[i][prop];
}else{
return 'No such property'
}
}
}
// Only change code above this line
}
// Change these values to test your function
lookUpProfile("Kristian", "lastName");
lookUpProfile("Sherlock", "likes");
lookUpProfile("Harry", "likes");
lookUpProfile("Bob", "number");
lookUpProfile("Bob", "potato");
lookUpProfile("Akira", "address");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment