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; } = {};
for (var key in myDictionary) { }
? Inside the loop, you'd usekey
to get the key, andmyDictionary[key]
to get the value – Ian