2018-10-10 18:03:03 -04:00
|
|
|
---
|
|
|
|
id: 5688e62ea601b2482ff8422b
|
|
|
|
challengeType: 1
|
2020-04-29 18:29:13 +08:00
|
|
|
videoUrl: 'https://scrimba.com/c/cDqW2Cg'
|
|
|
|
forumTopicId: 18259
|
2020-10-01 17:54:21 +02:00
|
|
|
title: 资料查找
|
2018-10-10 18:03:03 -04:00
|
|
|
---
|
|
|
|
|
|
|
|
## Description
|
2020-04-29 18:29:13 +08:00
|
|
|
<section id='description'>
|
|
|
|
我们有一个对象数组,里面存储着通讯录。
|
|
|
|
函数<code>lookUp</code>有两个预定义参数:<code>firstName</code>值和<code>prop</code>属性 。
|
|
|
|
函数将会检查通讯录中是否存在一个与传入的<code>firstName</code>相同的联系人。如果存在,那么还需要检查对应的联系人中是否存在<code>prop</code>属性。
|
|
|
|
如果它们都存在,函数返回<code>prop</code>属性对应的值。
|
|
|
|
如果<code>firstName</code>值不存在,返回<code>"No such contact"</code>。
|
|
|
|
如果<code>prop</code>属性不存在,返回<code>"No such property"</code>。
|
|
|
|
</section>
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
|
|
## Instructions
|
2020-04-29 18:29:13 +08:00
|
|
|
<section id='instructions'>
|
|
|
|
|
2018-10-10 18:03:03 -04:00
|
|
|
</section>
|
|
|
|
|
|
|
|
## Tests
|
|
|
|
<section id='tests'>
|
|
|
|
|
|
|
|
```yml
|
|
|
|
tests:
|
2020-04-29 18:29:13 +08:00
|
|
|
- text: <code>"Kristian", "lastName"</code>应该返回 <code>"Vos"</code>。
|
2020-02-18 01:40:55 +09:00
|
|
|
testString: assert(lookUpProfile('Kristian','lastName') === "Vos");
|
2020-04-29 18:29:13 +08: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"]);
|
2020-04-29 18:29:13 +08:00
|
|
|
- text: <code>"Harry","likes"</code>应该返回 an array。
|
2020-02-18 01:40:55 +09:00
|
|
|
testString: assert(typeof lookUpProfile("Harry", "likes") === "object");
|
2020-04-29 18:29:13 +08:00
|
|
|
- text: <code>"Bob", "number"</code>应该返回 "No such contact"。
|
2020-02-18 01:40:55 +09:00
|
|
|
testString: assert(lookUpProfile("Bob", "number") === "No such contact");
|
2020-04-29 18:29:13 +08:00
|
|
|
- text: <code>"Bob", "potato"</code>应该返回 "No such contact"。
|
2020-02-18 01:40:55 +09:00
|
|
|
testString: assert(lookUpProfile("Bob", "potato") === "No such contact");
|
2020-04-29 18:29:13 +08:00
|
|
|
- text: <code>"Akira", "address"</code>应该返回 "No such property"。
|
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'>
|
|
|
|
|
2020-04-29 18:29:13 +08:00
|
|
|
|
2018-10-10 18:03:03 -04:00
|
|
|
```js
|
2020-04-29 18:29:13 +08: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"]
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
//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");
|
2018-10-10 18:03:03 -04:00
|
|
|
```
|
2020-04-29 18:29:13 +08:00
|
|
|
|
2018-10-10 18:03:03 -04:00
|
|
|
</section>
|