SON.parse sorts the data automatically code example
Example: SON.parse sorts the data automatically
Put them in an array property on the JSON object if order is important (or just use an array!).
e.g. something like:
var jsonData = {data: [
{"81404": "Object"},
{"81408": "Object"},
{"81416": "Object"},
{"80387": "Object"},
{"73952": "Object"},
{"74697": "Object"},
{"81411": "Object"},
{"74700": "Object"}]
};
console.log(jsonData);
or for just the list
console.log(jsonData.data);