FCC exercise to learn functions. lookUpProfile() function takes a name and a property (prop) as arguments and checks if name is an actual contact's firstName and the given property (prop) is a property of that contact.
The purpose of the project is just personal learning. I may revisit this code to find different solutions or to apply it under other context.
Array objects represents different people in our contacts lists.
lookUpProfile function takes name and a property (prop) as arguments. The function checks if name is an actual contact's firstName and the given property (prop) is a property of that contact.
- If both are true, returns the "value" of that property.
- If name does not correspond to any contacts then returns the string "No such contact".
- If prop does not correspond to any valid properties of a contact found to match name, it returns the string "No such property".
- Do the same in Python.
- There're other possible solutions, one using for...in syntax - ref here.
- Javascript ES6
NA - It's only coding examples, there's no setup.
Project is: in progress, - Kept for reference.
Based on FreeCodeCamp's excercises. Profile Lookup on JavaScript Algorithms and Data Structures certification, Basic JavaScript section.