2018-10-10 18:03:03 -04:00
---
id: 5688e62ea601b2482ff8422b
title: Profile Lookup
challengeType: 1
videoUrl: ''
localeTitle: 个人资料查询
---
## Description
< section id = "description" > 我们的联系人列表中有一组代表不同人的对象。已经为您预先编写了一个以< code > name< / code > 和属性( < code > prop< / code > )作为参数的< code > lookUpProfile< / code > 函数。该函数应检查< code > name< / code > 是否是实际联系人的< code > firstName< / code > ,并且给定属性( < code > prop< / code > )是该联系人的属性。如果两者都为真,则返回该属性的“值”。如果< code > name< / code > 与任何联系人不对应,则返回< code > " No such contact" < / code > 如果< code > prop< / code > 不符合找到匹配< code > name< / code > 的联系人的任何有效属性,则返回< code > " No such property" < / code > < / section >
## Instructions
< section id = "instructions" >
< / section >
## Tests
< section id = 'tests' >
```yml
tests:
- text: '< code > " Kristian" , " lastName" </ code > 应该返回< code > " Vos" </ code > '
2020-02-18 01:40:55 +09:00
testString: assert(lookUpProfile('Kristian','lastName') === "Vos");
2018-10-10 18:03:03 -04:00
- text: '< code > " Sherlock" , " likes" </ code > 应该回归< code > [" Intriguing Cases" , " Violin" ]</ code > '
2020-02-18 01:40:55 +09:00
testString: assert.deepEqual(lookUpProfile("Sherlock", "likes"), ["Intriguing Cases", "Violin"]);
2018-10-10 18:03:03 -04:00
- text: '< code > " Harry" ," likes" </ code > 应该返回一个阵列'
2020-02-18 01:40:55 +09:00
testString: assert(typeof lookUpProfile("Harry", "likes") === "object");
2018-10-10 18:03:03 -04:00
- text: '< code > " Bob" , " number" </ code > 应该返回“没有这样的联系”'
2020-02-18 01:40:55 +09:00
testString: assert(lookUpProfile("Bob", "number") === "No such contact");
2018-10-10 18:03:03 -04:00
- text: '< code > " Bob" , " potato" </ code > 应该返回“没有这样的联系”'
2020-02-18 01:40:55 +09:00
testString: assert(lookUpProfile("Bob", "potato") === "No such contact");
2018-10-10 18:03:03 -04:00
- text: '< code > " Akira" , " address" </ code > 应该返回“没有这样的财产”'
2020-02-18 01:40:55 +09:00
testString: assert(lookUpProfile("Akira", "address") === "No such property");
2018-10-10 18:03:03 -04:00
```
< / section >
## Challenge Seed
< section id = 'challengeSeed' >
< div id = 'js-seed' >
```js
//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": "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
}
// Change these values to test your function
lookUpProfile("Akira", "likes");
```
< / div >
< / section >
## Solution
< section id = 'solution' >
```js
// solution required
```
< / section >