Got stuck with : Testing Objects for Properties

Tell us what’s happening:

I tried to sollute the challenge it seems like i did everything okay
but yet there is a mistake somewhere not sre what it is plz hint:3

Your code so far


function checkObj(obj, checkProp) {
// Only change code below this line

if (checkObj.hasOwnProperty(checkProp)){
return obj[checkProp];
}else {
  return "Not Found"
}

// 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/81.0.4044.122 Safari/537.36.

Challenge: Testing Objects for Properties

Link to the challenge:

Hello there.

Have a read over this line…

if (checkObj.hasOwnProperty(checkProp)){

Hope this helps

1 Like