I have a lodash Dictionary which looks like this: { 5: "e", 2: "b", 3: "c", 1: "a", 4: "d" } I read here and in the link attached in the answer, that typescript iteration order is guaranteed for objects. Is it also guaranteed for lodash Dictionaries? I couldn't solid information on the subject. I want to create a dropdown sorted by key in descending order, and I thought if the iteration order is guaranteed I can just use
_(myDict).reverse().value()
Is the order guaranteed? Will it work? Thanks!