Challenge 4:
Write a function called objectSearcher that takes two arguments called myObject which is an object, and property which is a string. When objectSearcher is invoked it will return the value at the property that matches the property string.
struggling with this 1
Challenge 4:
Write a function called objectSearcher that takes two arguments called myObject which is an object, and property which is a string. When objectSearcher is invoked it will return the value at the property that matches the property string.
Example:
const object1 = {firstName: "Phillip", lastName: "Troutman"};
objectSearcher(object1, "firstName") // returns "Phillip"
objectSearcher(object1, "lastName") // returns "Troutman"
myObject[property]