-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path104-profile-lookup.js
58 lines (55 loc) · 2.02 KB
/
104-profile-lookup.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*
Profile Lookup:
We have an array of objects representing different people in our contacts lists.
A lookUpProfile function that takes name and a property (prop) as arguments has been pre-written for you.
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.
If name does not correspond to any contacts then return the string No such contact.
If prop does not correspond to any valid properties of a contact found to match name then return the string No such property.
- lookUpProfile("Kristian", "lastName") should return the string Vos
- lookUpProfile("Sherlock", "likes") should return ["Intriguing Cases", "Violin"]
- lookUpProfile("Harry", "likes") should return an array
- lookUpProfile("Bob", "number") should return the string No such contact
- lookUpProfile("Bob", "potato") should return the string No such contact
- lookUpProfile("Akira", "address") should return the string No such property
*/
// Setup
const 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 changed code below this line
for (const contact of contacts) {
if (name === contact.firstName) {
return contact.hasOwnProperty(prop) ?
contact[prop]
: "No such property";
}
}
return "No such contact";
// Only changed code above this line
}
lookUpProfile("Akira", "likes");