I have some data being returned in a JSON Dataset as follows in the Console.Log:
Looks like it's an array of JSON entries? To try to access this data, i've been using this type of JSON loop:
console.log(data);
for (var key in data) {
if (data.hasOwnProperty(key)) {
console.log(data[key].Station);
}
}
But it's constantly coming back as "Undefined". Why? And how do I collect this data via iteration?