Advertisement
tokamame

Untitled

Jan 25th, 2020
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. var contacts = [
  2. {
  3. "firstName": "Akira",
  4. "lastName": "Laine",
  5. "number": "0543236543",
  6. "likes": ["Pizza", "Coding", "Brownie Points"]
  7. },
  8. {
  9. "firstName": "Harry",
  10. "lastName": "Potter",
  11. "number": "0994372684",
  12. "likes": ["Hogwarts", "Magic", "Hagrid"]
  13. },
  14. {
  15. "firstName": "Sherlock",
  16. "lastName": "Holmes",
  17. "number": "0487345643",
  18. "likes": ["Intriguing Cases", "Violin"]
  19. },
  20. {
  21. "firstName": "Kristian",
  22. "lastName": "Vos",
  23. "number": "unknown",
  24. "likes": ["JavaScript", "Gaming", "Foxes"]
  25. }
  26. ];
  27.  
  28.  
  29. function lookUpProfile(name, prop){
  30. // Only change code below this line
  31.  
  32. // Only change code above this line
  33. }
  34.  
  35. // Change these values to test your function
  36. lookUpProfile("Akira", "likes");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement