how to loop through obj js code example
Example 1: loop over keys in object javascript
Object.keys(obj).forEach(function(key) {
console.log(key, obj[key]);
});
Example 2: js loop through object
for (var property in object) {
if (object.hasOwnProperty(property)) {
// Do things here
}
}