[Solved] How can iterate over JSON object and print its properties and their values?


            var myJSON = JSON.parse('{"Record_0":[{"Status":"CREATED","CreatorLoginId":"sandhya","Name":"G1"}],"Record_1":[{"Status":"CREATED","CreatorLoginId":"San","Name":"G2"}]}');
            for(var pr in myJSON)
            {
                console.log(myJSON[pr][0].Status);
                console.log(myJSON[pr][0].CreatorLoginId);
                console.log(myJSON[pr][0].Name);
            }

3

solved How can iterate over JSON object and print its properties and their values?