I have a JSON file which contains the following data:
{
"Aug 24, 2020": [
"weather alert.",
"new message",
"you have a new request.",
],
"Aug 23, 2020": [
"weather alert.",
"new message",
"you have a new request.",
],
"Aug 22, 2020": [
"weather alert.",
"new message",
"you have a new request.",
]
}
I want to sort the key (dates) before using the JSON data in my code. Is it possible to sort date in this format in Javascript?