There is no two dimensional data in Javascript, so what you have is nested objects, or a jagged array (array of arrays), or a combination (object with array properties, or array of objects). Just loop through the sub-items:
for (var key in data) {
var item = data[key];
for (var key2 in item) {
alert(item[key2]);
}
}