javascript: How can I sort 1 level timeseries json?
I have a json like this: { "2023-06":7.2, "2023-08":6.7, "2023-07":5, "2022-04":3.5, "2023-05":6.1 } How can I sort it to get it in chronological order? Starting with latest date and ending with the most far in history? I am able to…