Testing Objects for Properties, Am I missing something?

So this is is my code, I have gift commented to check the tests it is to pass. I can pass all but one. Either checkProp gift to return “pony” or comment it out to return Not Found. How do I pass all tests to finish this one? I have to be missing something.

  function checkObj(obj, checkProp) {

// Only change code below this line
var myObj = {
//gift: “pony”,
pet: “kitten”,
bed: “sleigh”,
city: “Seattle”
};
if(myObj.hasOwnProperty(checkProp)) {
return myObj[checkProp];
} else {
return “Not Found”;
}

// Only change code above this line
}


function checkObj(obj, checkProp) {
// Only change code below this line
var myObj = {
  //gift: "pony",
  pet: "kitten",
  bed: "sleigh",
  city: "Seattle"
};
if(myObj.hasOwnProperty(checkProp)) {
  return myObj[checkProp];
} else {
  return "Not Found";
}

// Only change code above this line
}
  **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36.

Challenge: Testing Objects for Properties

Link to the challenge:

You need to check the input object, not hardcode your function to only work for only one particular object.

1 Like

Sweet thank you. I get what your saying. When I get home will fix this. Again thank you.

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.