When working with Svelte, the #each construct allows for easy iteration over array-like objects. But what if you have a JSON dictionary object instead? Is there a way in Svelte to iterate over this type of object in order to populate a dropdown menu? The data I am dealing with is the result of an API call and has the following structure:
const obj = { foo: "bar", batz: "boink" }