Basic JavaScript - Testing Objects for Properties

Tell us what’s happening:
Describe your issue in detail here.

Your code so far

function checkObj(obj, checkProp) {
  // Only change code below this line
  const obj={
    gift:"pony",
    pet:"kitten",
    bed:"sleigh",
  };
  
 if(obj.hasOwnProperty(checkProp)){
    return obj[checkProp];
  }
  else{
    return "not found";
  }
 
  
  // Only change code above this line
}

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:108.0) Gecko/20100101 Firefox/108.0

Challenge: Basic JavaScript - Testing Objects for Properties

Link to the challenge:

Please get in the habit of describing the issue you are having. It is an important skill.

And, I would ask yourself why you are defining the variable obj - isn’t it being passed in to you as a parameter?

Also, keep in mind that if the test requires a string to be returned, it has to be exact.

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