The problem with array defined elements. After clear all data, elements still exist in array, but length of array returns 0 value. When trying to fill array again, we are didn't see, that array is empty.
I was trying to clear array different ways
arr.splice(0, arr.length);
arr.length = 0;
etc...
but array always have old values after last element was removed from array...
here is example
What am I doing wrong?
It happens only latest versions on Chrome browser, in other browsers all is ok.
working on 35.0.1916.153 m, but NOT working on 37.0.2062.94 m.
I've also created a ticket in chromium tracker here.