var object = [{key1:'value',key2:'value2'},{'key1:'value',key2:'value2}]

for (var key in object)
     {
      if(!object.hasOwnProperty(key)){continue;}

Why do we get error? Am i checking the right way.

I get an error cannot call hasOwnProperty in an Object - TypeError

link|improve this question

Please post a complete example with valid syntax. This is obviously not a full example of your actual code. It is impossible to tell anything from what you've posted. – user113716 Jul 19 '11 at 12:41
Quotes seem to be messed up and the array is called array and not object – andyb Jul 19 '11 at 12:41
@andyb: just messed up things – John Cooper Jul 19 '11 at 12:44
@John: So now you're doing a for-in over an Array? Is this your actual code? Looking at your previous question you had array and arrayObj for names, so it seems that you're excluding some code. Now you've changed array to object, which changes the meaning. Please post actual code that represents your actual issue. – user113716 Jul 19 '11 at 12:47
...and your syntax is still invalid so this would never run. Please post an actual working example! – user113716 Jul 19 '11 at 12:47
feedback

3 Answers

up vote 2 down vote accepted

object is not defined. Check this revision:

var myarr = [{key1:'value',key2:'value2'},{key1:'value',key2:'value2'}];
//renamed to myarr to avoid confusion - and removed typos from your code. 
//myarr is now an array of objects

//loop through myarr
for (var i=0;i<myarr.length;i=i+1){

 //check if the element myarr[i] is indeed an object
 if (myarr[i].constructor === Object) {

   //loop through the object myarr[i]
   for (var key in myarr[i])  {

      //notice the removal of !
      if(myarr[i].hasOwnProperty(key)){
         /* do things */
      }
   }
 }
}
link|improve this answer
@Kooilnc: What does the removal of !{NOT} signify here... Is it wrong to be placed – John Cooper Jul 19 '11 at 12:56
@John: you don't need it. Roughly translating you question, you want to check if property belongs to the object you are looping. You use the hasOwnProperty of the object you're looping, so if that returns true you know the property belongs to the object (and not to one of the object 'ancestors' if applicable). Otherwise the loop continues to the next key without the need to explicitly initiate that. – KooiInc Jul 19 '11 at 13:06
feedback

Is your for-loop correct? Try this

for (var key in array)
{
  ...
link|improve this answer
feedback

You have not defined object in your for loop. Your array of objects above is named array.

for (var key in array) {

}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.