var A=[];
var B={C:"",D:[]};
A.push(B);
Can someone explain what's the difference between A and B arrays?If possible a scheme to understand it better. Also i don't get why the code (B.C.length) gets as result the length of the first line instead of the number of the objects the C array contains.