[go: nahoru, domu]

Skip to content

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.

Notifications You must be signed in to change notification settings

candytale55/Profile-Lookup__FCC_JS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

Profile-Lookup__FCC_JS

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.

General info

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.

Description

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".

To-do list:

  • Do the same in Python.
  • There're other possible solutions, one using for...in syntax - ref here.

Technologies

  • Javascript ES6

Setup

NA - It's only coding examples, there's no setup.

Status

Project is: in progress, - Kept for reference.

References

Based on FreeCodeCamp's excercises. Profile Lookup on JavaScript Algorithms and Data Structures certification, Basic JavaScript section.

About

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.

Topics

Resources

Stars

Watchers

Forks