TypeScript, Looping through a dictionary

javascript, typescript

Solution

To loop over the key/values, use a `for in` loop:

for (let key in myDictionary) {
    let value = myDictionary[key];
    // Use `key` and `value`
}

Problem

In my code, I have a couple of dictionaries (as suggested here) which is String indexed. Due to this being a bit of an improvised type, I was wondering if there any suggestions on how I would be able to loop through each key (or value, all I need the keys for anyway). Any help appreciated! ``` myDictionary: { [index: string]: any; } = {}; ```

Original source

Related problems