how to loop through object in typecript code example
Example 1: loop through object typescript
// This solution is for when you want to use
// `break`, `return` which forEach doesn't support
for (const key in tempData) {
if (tempData.hasOwnProperty(key)) {
// your logic here
}
}
Example 2: typescript for loop key value pai
for (let key in myDictionary) {
let value = myDictionary[key];
// Use `key` and `value`
}