I have this below type of array. I want to iterate this array in JavaScript. How is this possible?
var dictionary = {
"data":[
{"id":"0","name":"ABC"},
{"id":"1","name":"DEF"}
],
"images": [
{"id":"0","name":"PQR"},
{"id":"1","name":"xyz"}
]
};