Skip to content

Instantly share code, notes, and snippets.

@swapnildaddikar
Created August 17, 2016 04:54
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 swapnildaddikar/ac37b8afb0b2c21a728a190fe0486577 to your computer and use it in GitHub Desktop.
Save swapnildaddikar/ac37b8afb0b2c21a728a190fe0486577 to your computer and use it in GitHub Desktop.
Profile Lookup
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(firstName, prop){
myCount=0;
// Only change code below this line
for(var x=0;x<contacts.length;x++)
{
if(firstName==contacts[x].firstName)
{
var check=contacts[x].hasOwnProperty(prop);
if (check)
{
return contacts[x][prop];
}
else
{
return "No such property";
}
}
if(firstName!=contacts[x].firstName)
{
myCount+=1;
}
}
if(myCount==contacts.length)
{
return "No such contact";
}
// Only change code above this line
}
// Change these values to test your function
lookUpProfile("Akira", "likes");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment