I have this object:
const example = {
first: [*arrays objects*],
second: [*arrays objects*],
third: [*arrays objects*]
}
So, the situation is this: the example has 3 keys. Each key has an array of objects. First i want to loop through the objects keys (first, second, third), then the array of them (with forEach). How can i do that?