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"
Voters
what have you tried so far?
const objectSearcher = (myObject,property) => {
let firstName = 'Phillip'
let lastName = 'Troutman'
console.log(
${firstName},${lastName}
)}
// UNCOMMENT THESE LINES TO CHECK YOUR WORK
const object1 = {firstName: "Phillip", lastName: "Troutman"};
objectSearcher(object1, "firstName") // returns "Phillip"
objectSearcher(object1, "lastName") // returns "Troutman"
prints to the console:
Phillip,Troutman
Phillip,Troutman
const firstName = 'Phillip'
const lastName = 'Troutman'
const objectSearcher = (myObject,property) => {
console.log(firstName,lastName)
}
myObject[property]