I am using JSON within my javascript and I am trying to get a string value for the dot notation representation.
For example AAA.BBB[0].CCC.DDD[5].EEE
= 123 in JSON dot notation format.
But I want to get the value AAA.BBB[0].CCC.DDD[5].EEE
as a String so I can save it for later use to allow me to modify my JSON code directly.
Is there a method in Javascript or jQuery that can return a string value representation?
*EDIT
I am converting JSON data into a list structure, and I want to save the AAA.BBB[0].CCC.DDD[5].EEE
format as the id so when a user modifies the content of that list item it modifies the JSON data directly. Would there be a better way to save the location in the id?