const navigationItems = [
{
id: 4,
title: 'Пункт 1',
children: [
{
id: 1,
title: 'Пункт 1'
}
]
},
{
id: 2,
title: 'Пункт 2',
children: [
{
id: 1,
title: 'Пункт 1'
}
]
},
{
id: 3,
title: 'Пункт 3',
children: [
{
id: 1,
title: 'Пункт 1'
}
]
},
{
id: 4,
title: 'Пункт 4',
children: [
{
id: 1,
title: 'Пункт 1'
}
]
}
];
navigationItems.sort(mySortFunc)
function mySortFunc(itemA, itemB) {
return itemA.id - itemB.id
}