* chore(learn): audit basic algorithm scripting * chore(learn): audit basic data structures * chore(learn): audit basic javascript * chore(learn): audit debugging * chore(learn): audit es6 * chore(learn): audit functional programming * chore(learn): audit intermidate algorithms * chore(learn): audit js projects * chore(learn): audit object oriented programming * chore(learn): audit regex * fix(learn): remove stray . * fix(learn): string to code * fix(learn): missed some * fix(learn): clarify strings Based on Randy's feedback, clarifies string instances where quotes were removed in favour of back ticks. * fix: apply suggestions - thanks Randy! :) Co-authored-by: Randell Dawson <5313213+RandellDawson@users.noreply.github.com> * fix: non-suggestion comments * chore(learn): remove comments from codes Removes the comments from the description and instruction code blocks to ensure that all relevant information is translatable. * fix: Apply suggestions from code review Co-authored-by: Shaun Hamilton <51722130+ShaunSHamilton@users.noreply.github.com> * fix: revert crowdin fix * Update curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/mutations.md Co-authored-by: Randell Dawson <5313213+RandellDawson@users.noreply.github.com> * fix: Apply suggestions from code review Co-authored-by: Shaun Hamilton <51722130+ShaunSHamilton@users.noreply.github.com> * Update curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/use-destructuring-assignment-to-assign-variables-from-arrays.md Co-authored-by: Shaun Hamilton <51722130+ShaunSHamilton@users.noreply.github.com> * fix: Apply suggestions from code review Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> Co-authored-by: Shaun Hamilton <51722130+ShaunSHamilton@users.noreply.github.com> * chore: change voice * fix: Christopher Nolan * fix: expressions would evaluate * fix: will -> would * Update curriculum/challenges/english/02-javascript-algorithms-and-data-structures/object-oriented-programming/add-methods-after-inheritance.md Co-authored-by: Randell Dawson <5313213+RandellDawson@users.noreply.github.com> * fix: to work to push * Update curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/iterate-with-javascript-for-loops.md Co-authored-by: Shaun Hamilton <51722130+ShaunSHamilton@users.noreply.github.com> * Update curriculum/challenges/english/02-javascript-algorithms-and-data-structures/object-oriented-programming/add-methods-after-inheritance.md Co-authored-by: Randell Dawson <5313213+RandellDawson@users.noreply.github.com> Co-authored-by: Randell Dawson <5313213+RandellDawson@users.noreply.github.com> Co-authored-by: Shaun Hamilton <51722130+ShaunSHamilton@users.noreply.github.com> Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>
152 lines
3.5 KiB
Markdown
152 lines
3.5 KiB
Markdown
---
|
|
id: 5688e62ea601b2482ff8422b
|
|
title: Profile Lookup
|
|
challengeType: 1
|
|
videoUrl: 'https://scrimba.com/c/cDqW2Cg'
|
|
forumTopicId: 18259
|
|
dashedName: profile-lookup
|
|
---
|
|
|
|
# --description--
|
|
|
|
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`.
|
|
|
|
# --hints--
|
|
|
|
`lookUpProfile("Kristian", "lastName")` should return the string `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 the string `No such contact`
|
|
|
|
```js
|
|
assert(lookUpProfile('Bob', 'number') === 'No such contact');
|
|
```
|
|
|
|
`lookUpProfile("Bob", "potato")` should return the string `No such contact`
|
|
|
|
```js
|
|
assert(lookUpProfile('Bob', 'potato') === 'No such contact');
|
|
```
|
|
|
|
`lookUpProfile("Akira", "address")` should return the string `No such property`
|
|
|
|
```js
|
|
assert(lookUpProfile('Akira', 'address') === 'No such property');
|
|
```
|
|
|
|
# --seed--
|
|
|
|
## --seed-contents--
|
|
|
|
```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
|
|
}
|
|
|
|
lookUpProfile("Akira", "likes");
|
|
```
|
|
|
|
# --solutions--
|
|
|
|
```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");
|
|
```
|