typescript look throw keys in type code example
Example 1: object iteration in typescript
Object.entries(obj).forEach(
([key, value]) => console.log(key, value);
);
Example 2: typescript for loop key value pai
for (let key in myDictionary) {
let value = myDictionary[key];
// Use `key` and `value`
}