I seem to be having trouble accessing individual elements of a json array. Given this code:
json_array=JSON.parse(data);
console.log(json_array);
console.log(json_array.title);
console.log(json_array.requester);
console.log(json_array.none);
This is the output:
Array(3)
0: {requester: false}
1: {title: false}
2: {none: true}
length: 3
[[Prototype]]: Array(0)
undefined
undefined
undefined
Obviously I am somehow accessing the individual elements incorrectly. What am I missing? TIA.