I have the following array of objects which also contains objects, available to me seen in the console as:
Array(2)
0 {GK: {job_numbers: ["56764"]}}
1 {AK: {job_numbers: ["12345", "5678", "78909"]}, MATT: {job_numbers: ["12345"]}}
Now I want to loop through this array in such a manor that I go to each object, and then also loop the elements inside.
For example,
I want to loop the array and get GK and its job numbers, then also get AK and its job numbers as well as MATT and its job numbers.