So what do i do wrong here?

Tell us what’s happening:

Your code so far


var obj={
gift: "pony",
pet: "kitten",
bed: "sleigh",
city: "Seattle"
};

function checkObj(obj, checkProp) {
// Only change code below this line
if (obj.hasOwnProperty(checkProp)){
return obj[checkProp];
}
else{
return "not found";
}
// Only change code above this line
}
checkObj("gift");

Your browser information:

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

Challenge: Testing Objects for Properties

Link to the challenge:

Welcome, Yena.

Almost everything in programming is very specific:

What you have:

return "not found";

What the instructions say:

If not, return "Not Found" .

Hope this helps

2 Likes