Basic JavaScript - Testing Objects for Properties

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

function checkObj(obj, checkProp) {
  // Only change code below this line
 return obj.hasOwnProperty(checkProp);
  // 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/114.0.0.0 Safari/537.36

Challenge: Basic JavaScript - Testing Objects for Properties

Link to the challenge:

Hi there! Welcome to the forums.

Please remember to include a description of the issue you are having to help others understand and troubleshoot the issue with you.

It looks like you are currently returning simply true/false however the problem asks you to return specific values based on if the object has the specific property or not.

Modify the function checkObj to test if the object passed to the function parameter obj contains the specific property passed to the function parameter checkProp . If the property passed to checkProp is found on obj , return that property’s value. If not, return Not Found .