If I have an array that looks like this;
markers[56] = { label: "One" };
markers[62] = { label: "Two" };
markers[87] = { label: "Three" };
markers[125] = { label: "Four" };
Now I have some JS;
for (var thisMarker in markers) {
//What goes here so I can access the "label" property?
}
I know this is simplistic but later on there will be many more properties added to the object not just "label".