I'm trying to find a way to move an object element to a specific position.
For example, I've this object :
{
"element1" : {} // object,
"element2" : {},
"element3" : {}
}
And I search to move element3 at the first position :
{
"element3" : {},
"element1" : {},
"element2" : {}
}
Thanks for your help !