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
arrayand notobject– andyb Jul 19 '11 at 12:41for-inover an Array? Is this your actual code? Looking at your previous question you hadarrayandarrayObjfor names, so it seems that you're excluding some code. Now you've changedarraytoobject, which changes the meaning. Please post actual code that represents your actual issue. – user113716 Jul 19 '11 at 12:47