I'm not a Javascript person, but have inherited the joys. So far so good.
My javascript object, in firebug, looks like this

This shows that the array sss has 4 items in the array (0,1,2 and 3).
The complication comes when I expand one of these elements, I see

From my own tests these are not arrays. They are just treated as objects (or so it seems).
Within each DataItem, there is an object, you can just make it out called lzabel. Each DataItem has this value. I need to read the values within a for loop.
So, I would have hoped to use
for (var i = 0; i < sss[0];i++) { var z = sss[0][i]; //This is never executed } but no! No error, but the loop's content is never executed (as if sss[0] has no items).
How do I loop through like this?
for (var i = 0; i < sss[0];i++) { var z = sss[0][i]["lzabel"]; } EDIT
I added the following code
var t1 = sss.length; var t2 = sss[0].length; Firebug reports t1 = 4, and t2 as undefined.