I have an array in javascript and I can't access any data in it. The array prints out like this: console View
EDIT This is my code: The issue is it's not getting anything from data[x], and data is the name of my array
for (var x in data) {
yaxis.push(data[x].dateAdded);
xaxis.push(data[x].priority);
text_hover.push(data[x].name + ' - ' + data[x].organType);
}
I guess my issue is that its telling me my length is 0, but when in fact it is 1