Don't see the problem

Tell us what’s happening:

Don’t see the problem

Your code so far


// Setup
var myObj = {
gift: "pony",
pet: "kitten",
bed: "pillow"
};

function checkObj(checkProp) {
// Your Code Here
if ((myObj.hasOwnProperty(checkProp)) == true) {
  return myObj[checkProp];
}
 else {
  return "Not Found";
}
}
// Test your code by modifying these values
console.log(checkObj("bed"));

Your browser information:

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

Challenge: Testing Objects for Properties

Link to the challenge:

1 Like

Hello there.

You have changed code you should not have. Follow the instructions, after resetting all code.

Hope this helps

1 Like