Q:

object iteration in typescript

Object.entries(obj).forEach(
  ([key, value]) => console.log(key, value);
);
4
myMap.forEach((value: boolean, key: string) => {
    console.log(key, value);
});
2
// 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
      }
}
2

New to Communities?

Join the community