Here is a string that I have:
[{"data1":"A"},{"data2":"B"},{"data3":"C"}]
Using jQuery, I converted this string to JSON:
test_json = $.parseJSON('[{"data1":"A"},{"data2":"B"},{"data3":"C"}]');
After conversion, I obtained 3 objects:
https://i.sstatic.net/flG6q.jpg
I am unsure about how to retrieve the key and value from this string-json. Do you think the format of the string-json is incorrect?