how do I sort a dictionary by key like
dict["word_21"] = "Hello Java";
dict["word_22"] = "Hello World";
dict["word_11"] = "Hello Javascript";
so that I get
dict["word_22"] = "Hello World";
dict["word_21"] = "Hello Java";
dict["word_11"] = "Hello Javascript";
There are word_number combinations on indices only and the values are strings. The indices are distinct (no equal values) but could be “undefined” in an error case
Edit: Actually I need the descending and ascending order of it. But the descending order is what I need at the moment.
Try this
Sorting
dicton its keys and writing it back to the object does not make sense to me, but here it goes: