Well, basically I have an array that has an objects with names and this objects has an array of objects inside, looks likes this:
var array = [
{articles: [
{number: "123"},
{number: "143"},
]},
{paragraph: [
{number: "197"},
]},
]
And I'm really willing to get a object value in return, like this
{articles: [...], paragraph: [...]}
Can someone help me, please?