Oks..
I have an object:
data.Dealer.car[0]
[1]
[2]
If I do this:
alert(data.Dealer.car.length);
delete data.Dealer.car[1];
alert(data.Dealer.car.length);
It gives me the same count each time from the alert, even though the actual array element now doesn't exist?
Any ideas?