Hi, i have a literal object like this
var O={
toString:function(){
// some code here
},
anotherMethod:function(){
// some code here
}
}
Im walk through object with for-in loop
for(var p in O){
// some stuff with p and O[p]
}
The problem is toString property will not catch in the loop on IE browser!