This is my json response in javascript.
{"1": {"11": "51","12": "52","13": "53","14": "54","15": "55"},"2": {"11": "51","12": "52","13": "53","14":"54","15": "55"},"4": {"11": "51","12": "52","13": "53","14": "54","15": "55"}}
I am parsing this json but it is not giving proper output.
for(var i=0; i<Object.keys(obj).length; i++)
{
// here how should i parse the json and get all the key and values into the array.
}
Thanks