-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathprofile_lookup.js
More file actions
49 lines (45 loc) · 1.48 KB
/
Copy pathprofile_lookup.js
File metadata and controls
49 lines (45 loc) · 1.48 KB
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
//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": "",
"lastName": "Vos",
"number": "93938187",
"likes": ["Javascript", "Gaming", "Foxes"]
}
];
function lookUpProfile(firstName, prop){
// Only change code below this line
var result;
for(i=0; i<contacts.length; i++) {
if (contacts[i].firstName != firstName) {
result = contacts[i][prop];
console.log(result);
console.log("You can also learn something about " + contacts[i].firstName + " likes: " + result);
} else {
console.log(contacts[i].firstName + " has been found! Their details: " + contacts[i][prop]);
// console.log("We don't like " + contacts[i].firstName + " - skip this person!");
}
// if (contacts[i].firstName == firstName) {
// console.log(contacts[i].firstName + " has been found! Their details: " + contacts[i][prop]);
// }
}
}
lookUpProfile("Harry", "likes");