I have this simple JSON table where the elements needs to be sorted in alpabetical order by value and the other alpabetical order by name. Could someone give me and example how would i do it so i can understand it?
{
"sortingTask": [
{"sortAlpabeticallyByValue": [
{"string":"äää"},
{"string":"bee"},
{"string":"aaa"},
{"string":"öoöo"},
{"string":"OöOö"},
]},
{"sortAlpabeticallyByName": [
{"stringB":"testi1"},
{"stringÄ":"testi2"},
{"stringA":"testi3"}
]},
{"sortAlpabetically": [
"äää","bee","baa"
]}
]
}