Let's say I have the following array:
[
{
"key":"Certified?",
"value":"Yes"
},
{
"key":"Language",
"value":"EN"
},
{
"key":"Training-Place",
"value":"City"
}
]
I want to sort it in a specific order of Language
, Certified?
, Training-Place
, how can I achive that? Preferably I would be able to define the sorting like:
["Language", "Certified?", "Training-Place"]
Thank you very much, any help is appreciated.