I don't know what is happening

Tell us what’s happening:
it gives me the last error, I don’t know how to fix it. Thanks in advice to everyone :heart:

Your code so far


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


 // Only change code above this line
}

Your browser information:

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

Challenge: Testing Objects for Properties

Link to the challenge:

why have you added this?

1 Like

Hi. hasOwnProperty method returns true/false depend on the property you give it. In this case you have to write a function that has two arguments, an object( the object you want to check for its props) and a property. You want to check hasOwnProperty return value with an if statement and return a value based on existence of the desire property.