I know key order isn\'t guaranteed in JS objects, however, my data structure comes from a backend for which I have no control over. Is there anything I can do to preserve th
No. As you wrote:
I know key order isn't guaranteed in JS objects
If you want the order you need to use an array. If you have an object, then there is no defined order to the properties.