Object.keys(obj).forEach(e => console.log(`key=${e} value=${obj[e]}`));
// 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
}
}