I have a bunch of numbers in my JSON data array like so...
"achievements_unlocked": [ 9, 5, 4, 6 ],
Is there an easy way I can sort these numerically? eg(4,5,6,9)
Cheers
Develop games in your browser. Powerful, performant & highly capable.
I guess you can load them into Array object, sort it (there is an action "Sort"), and put back into JSON.