Test issue Basic JavaScript: Testing Objects for Properties

Tell us what’s happening:

why i am not able to pass this test

Your code so far
var myObj = {
gift: “pony”,
pet: “kitten”,
bed: “sleigh”
};
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(“gift”));
console.log(checkObj(“pet”));
console.log(checkObj(“bed”));


// Setup
var myObj = {
gift: "pony",
pet: "kitten",
bed: "sleigh"
};
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("gift"));
console.log(checkObj("pet"));
console.log(checkObj("bed"));

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:74.0) Gecko/20100101 Firefox/74.0.

Challenge: Testing Objects for Properties

Link to the challenge:

You have modified the method signature for method checkObj. What you have is

function checkObj(checkProp)

but it should be

function checkObj(obj, checkProp)

pass your myObj object as a parameter to the function.