I have the array of objects
[
{ id: 1, parent_id: null, title: 'Title 1' },
{ id: 2, parent_id: 1, title: 'Title2' },
{ id: 3, parent_id: 2, title: 'Title 3' },
{ id: 4, parent_id: null, title: 'Title 4' }
]
I need to transform this array to this
[
{
id: 1,
parent_id: null,
children: [
{
id: 2,
parent_id: 1,
title: 'Title2',
children: [
{ id: 3, parent_id: 2, title: "Title 3" }
]
}
]
},
{id: 4, parent_id: null, title: 'Title 4' }
]
I have no idea, how can do this