I have an array that includes of objects and every objects includes of objects, I want convert below array
[
{
0: { a: 1, b: 2 },
1: { c: 3, d: 4 }
},
{
0: { e: 5, f: 6 },
1: { g: 7, h: 8 },
2: { i: 9, j: 10 },
}
]
to this array
[
{ a: 1, b: 2 },
{ c: 3, d: 4 },
{ e: 5, f: 6 },
{ g: 7, h: 8 },
{ i: 9, j: 10 }
]
