Answers for "iteration object typescript"

3

object iteration in typescript

Object.entries(obj).forEach(
  ([key, value]) => console.log(key, value);
);
Posted by: Guest on July-21-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 "TypeScript"

Browse Popular Code Answers by Language