2018-09-30 23:01:58 +01:00
|
|
|
---
|
|
|
|
id: 5688e62ea601b2482ff8422b
|
|
|
|
title: Profile Lookup
|
|
|
|
challengeType: 1
|
2019-02-14 12:24:02 -05:00
|
|
|
videoUrl: 'https://scrimba.com/c/cDqW2Cg'
|
2019-07-31 11:32:23 -07:00
|
|
|
forumTopicId: 18259
|
2018-09-30 23:01:58 +01:00
|
|
|
---
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
# --description--
|
|
|
|
|
2018-09-30 23:01:58 +01:00
|
|
|
We have an array of objects representing different people in our contacts lists.
|
2020-11-27 19:02:05 +01:00
|
|
|
|
|
|
|
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.
|
|
|
|
|
2018-09-30 23:01:58 +01:00
|
|
|
If both are true, then return the "value" of that property.
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
If `name` does not correspond to any contacts then return `"No such contact"`.
|
|
|
|
|
|
|
|
If `prop` does not correspond to any valid properties of a contact found to match `name` then return `"No such property"`.
|
|
|
|
|
|
|
|
# --hints--
|
|
|
|
|
|
|
|
`lookUpProfile("Kristian", "lastName")` should return `"Vos"`
|
|
|
|
|
|
|
|
```js
|
|
|
|
assert(lookUpProfile('Kristian', 'lastName') === 'Vos');
|
|
|
|
```
|
|
|
|
|
|
|
|
`lookUpProfile("Sherlock", "likes")` should return `["Intriguing Cases", "Violin"]`
|
|
|
|
|
|
|
|
```js
|
|
|
|
assert.deepEqual(lookUpProfile('Sherlock', 'likes'), [
|
|
|
|
'Intriguing Cases',
|
|
|
|
'Violin'
|
|
|
|
]);
|
|
|
|
```
|
|
|
|
|
|
|
|
`lookUpProfile("Harry", "likes")` should return an array
|
|
|
|
|
|
|
|
```js
|
|
|
|
assert(typeof lookUpProfile('Harry', 'likes') === 'object');
|
|
|
|
```
|
|
|
|
|
|
|
|
`lookUpProfile("Bob", "number")` should return "No such contact"
|
|
|
|
|
|
|
|
```js
|
|
|
|
assert(lookUpProfile('Bob', 'number') === 'No such contact');
|
2018-09-30 23:01:58 +01:00
|
|
|
```
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
`lookUpProfile("Bob", "potato")` should return "No such contact"
|
2018-09-30 23:01:58 +01:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
```js
|
|
|
|
assert(lookUpProfile('Bob', 'potato') === 'No such contact');
|
|
|
|
```
|
2018-09-30 23:01:58 +01:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
`lookUpProfile("Akira", "address")` should return "No such property"
|
|
|
|
|
|
|
|
```js
|
|
|
|
assert(lookUpProfile('Akira', 'address') === 'No such property');
|
|
|
|
```
|
|
|
|
|
|
|
|
# --seed--
|
|
|
|
|
|
|
|
## --seed-contents--
|
2018-09-30 23:01:58 +01:00
|
|
|
|
|
|
|
```js
|
2020-03-02 23:18:30 -08:00
|
|
|
// Setup
|
2018-09-30 23:01:58 +01:00
|
|
|
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
|
|
|
|
|
|
|
|
// Only change code above this line
|
|
|
|
}
|
|
|
|
|
|
|
|
lookUpProfile("Akira", "likes");
|
|
|
|
```
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
# --solutions--
|
2018-09-30 23:01:58 +01:00
|
|
|
|
|
|
|
```js
|
|
|
|
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"]
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
//Write your function in between these comments
|
|
|
|
function lookUpProfile(name, prop){
|
|
|
|
for(var i in contacts){
|
|
|
|
if(contacts[i].firstName === name) {
|
|
|
|
return contacts[i][prop] || "No such property";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return "No such contact";
|
|
|
|
}
|
|
|
|
//Write your function in between these comments
|
|
|
|
|
|
|
|
lookUpProfile("Akira", "likes");
|
|
|
|
```
|