How can I access this data?
Here is my Json:
{ \"6a768d67-82fb-4dd9-9433-d83dbd2f1b78\": { \"name\": \"Bahut\", \"11\": { \"timestam
If you want to loop through the data, use a for in loop:
for in
for (var key in obj) { //obj is your data variable console.log(key); //xxxx-x-xx-x-x-xxxx console.log(obj[key].name); //the name for each }