I am facing an issue where I am attempting to sort an array of objects, but nothing seems to be happening. Do I require another function to sort naturally alphanumeric, or is the forEach method causing a problem?
element.items[x] = [
{
"title": "033 - Riegel, Freizeitaktivitäten",
},
{
"title": "011 - Psychosomatischer Einstellungsfragebogen (ZPID-Standard 9001406)",
},
{
"title": "047 - Wunschprobe (ZPID-Standard 9004592)",
},
{
"title": "014 - Exploration II, allgemeine und vergangene Lebenssituation",
},
{
"title": "006 - Beurteilung des Gesamteindrucks",
},
{
"title": "015 - Exploration III, allgemeine und zukünftige Lebenssituation",
},
{
"title": "016 - Befragung zur Familie und Angehörigen",
}
]
this.dokumentation.forEach( element => {
console.log(element.items.sort((a, b) => (a.title > b.title) ? 1 : -1));
});