I have JSON string that I retrieve from server:
"{ \"id\": 1, \"name\": \"Bill\", \"fields\": [\"a\", \"b\"] }"
When I do JSON.parse() then it sorts keys in alphabetical order:
{ fields: ["a", "b"], id: 1, name: "Bill" }
How can I prevent this sorting?