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
return checkObj: "gift, pet, bed", "pony, kitten, sleigh";
// 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/104.0.5112.102 Safari/537.36 Edg/104.0.1293.63
Challenge: Basic JavaScript - Testing Objects for Properties
It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge.
We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.
One big thing about functions is you usually are passing things to them as arguments and using them in the function with the parameters you have defined.
function checkObj(obj, checkProp) {
}
Here the function is named checkObj, and it has the parameters obj and checkProp. So far you have not used them at all in your function.
This is a function call which is how you pass values to your function. If you notice the first value is an object, the second value is a string. They will be given to your parameters for you to use in your function.
You can use hasOwnProperty method on an object, and pass it a string to test if that object has that property. And like the test says it will return a boolean of true or false depending on if the object has that property.
If you have a question about a specific challenge as it relates to your written code for that challenge, just click the Ask for Help button located on the challenge. It will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.