Answers for "loop an object properties in ts"

4

loop an object properties in ts

Object.keys(obj).forEach(e => console.log(`key=${e}  value=${obj[e]}`));
Posted by: Guest on May-14-2020
3

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
      }
}
Posted by: Guest on August-11-2020

Code answers related to "loop an object properties in ts"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language