Please help,TypeError: myObj.hasOwnproperty is not a function

Tell us what’s happening:
i write a code according to solution …but what happen…?

TypeError: myObj.hasOwnproperty is not a function

Your code so far


// Setup
var myObj = {
gift:"pony",
pet: "kitten",
bed: "sleigh"
};

function checkObj(checkProp) { 

// Your Code Here
return myObj.hasOwnproperty(checkProp) === true?  
myObj[checkProp]:"Not Found";

}
// Test your code by modifying these values
checkObj("gift");

Your browser information:

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

Challenge: Testing Objects for Properties

Link to the challenge:
https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures/basic-javascript/testing-objects-for-properties

Hi there, you seem to have your code right, you just had a typo…
yourline code:

`return myObj.hasOwnproperty(checkProp) === true?`

you need this
return myObj.hasOwnProperty(checkProp) === true?
OwnProperty(checkProp) need to upper case. P

thank you soo much…imendieta

Your Welcome @xorxis121 :slight_smile:

you seems good…by the way where are you from…?