I have below result returned from python script
{"a_paget_wilkes": "\/speaker\/a_paget_wilkes.json", "aaron_clark": "\/speaker\/aaron_clark.json", "aaron_dunlop": "\/speaker\/aaron_dunlop.json", "aaron_ernst": "\/speaker\/aaron_ernst.json", "aaron_hurst": "\/speaker\/aaron_hurst.json", "abigail_miller": "\/speaker\/abigail_miller.json", "abner_kauffman": "\/speaker\/abner_kauffman.json"}
So it is pretty well formatted JSON I believe. Javascript variable which has above data is called jsondata. Now in the chrome developer tool console when I try to access key valye pair by typing jsondata. I expect all keys to be listed as suggestion, but it shows me string properties like length, anchor, big, blink etc... instead
I tried even JSON.stringify first and then JSON.parse but still the same!!!
Any idea what is wrong in here?