Skip to content

Instantly share code, notes, and snippets.

@ggodreau
Created January 31, 2018 03:01
Show Gist options
  • Save ggodreau/d76dd9a8b24efabb4e2355890bb8fd5c to your computer and use it in GitHub Desktop.
Save ggodreau/d76dd9a8b24efabb4e2355890bb8fd5c to your computer and use it in GitHub Desktop.
TriflingUnluckyDegu created by anonymous - https://repl.it/repls/TriflingUnluckyDegu
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"]
}
];
// var name = contacts.firstName;
function lookUpProfile(firstName, prop){
for (i = 0; i < contacts.length; i++){
if(contacts[i].firstName == firstName){
if(contacts[i].hasOwnProperty(prop)){
return firstName + " " + contacts[i][prop];
}
return 'found first name, but no such property';
}
}
return 'No such contact'
}
lookUpProfile('Harry', "leos");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment