145 lines
3.3 KiB
Markdown
145 lines
3.3 KiB
Markdown
---
|
|
id: 5688e62ea601b2482ff8422b
|
|
title: Ricerca di un profilo
|
|
challengeType: 1
|
|
videoUrl: 'https://scrimba.com/c/cDqW2Cg'
|
|
forumTopicId: 18259
|
|
dashedName: profile-lookup
|
|
---
|
|
|
|
# --description--
|
|
|
|
Abbiamo un array di oggetti che rappresentano persone diverse nelle nostre liste di contatti.
|
|
|
|
Abbiamo scritto per te una funzione `lookUpProfile` che prende `name` e una proprietà (`prop`) come argomenti.
|
|
|
|
La funzione dovrebbe controllare se `name` è il `firstName` di un contatto effettivo e la proprietà specificata (`prop`) è una proprietà di quel contatto.
|
|
|
|
Se entrambe le condizioni sono soddisfatte, restituisce il "valore" di quella proprietà.
|
|
|
|
Se `name` non corrisponde a nessun contatto, restituisce la stringa `No such contact`.
|
|
|
|
Se `prop` non corrisponde ad alcuna proprietà valida di un contatto trovato cercando `name`, restituisce la stringa `No such property`.
|
|
|
|
# --hints--
|
|
|
|
`lookUpProfile("Kristian", "lastName")` dovrebbe restituire la stringa `Vos`
|
|
|
|
```js
|
|
assert(lookUpProfile('Kristian', 'lastName') === 'Vos');
|
|
```
|
|
|
|
`lookUpProfile("Sherlock", "likes")` dovrebbe restituire `["Intriguing Cases", "Violin"]`
|
|
|
|
```js
|
|
assert.deepEqual(lookUpProfile('Sherlock', 'likes'), [
|
|
'Intriguing Cases',
|
|
'Violin'
|
|
]);
|
|
```
|
|
|
|
`lookUpProfile("Harry", "likes")` dovrebbe restituire un array
|
|
|
|
```js
|
|
assert(typeof lookUpProfile('Harry', 'likes') === 'object');
|
|
```
|
|
|
|
`lookUpProfile("Bob", "number")` dovrebbe restituire la stringa `No such contact`
|
|
|
|
```js
|
|
assert(lookUpProfile('Bob', 'number') === 'No such contact');
|
|
```
|
|
|
|
`lookUpProfile("Bob", "potato")` dovrebbe restituire la stringa `No such contact`
|
|
|
|
```js
|
|
assert(lookUpProfile('Bob', 'potato') === 'No such contact');
|
|
```
|
|
|
|
`lookUpProfile("Akira", "address")` dovrebbe restituire la stringa `No such property`
|
|
|
|
```js
|
|
assert(lookUpProfile('Akira', 'address') === 'No such property');
|
|
```
|
|
|
|
# --seed--
|
|
|
|
## --seed-contents--
|
|
|
|
```js
|
|
// Setup
|
|
const 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
|
|
const 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) {
|
|
for (let i in contacts) {
|
|
if (contacts[i].firstName === name) {
|
|
return contacts[i][prop] || "No such property";
|
|
}
|
|
}
|
|
return "No such contact";
|
|
}
|
|
```
|