js best way to loop through an object code example
Example 1: loop over keys in object javascript
Object.keys(obj).forEach(function(key) {
console.log(key, obj[key]);
});
Example 2: javascript loop object
for (let thisVariable in thisObject)
Object.keys(obj).forEach(function(key) {
console.log(key, obj[key]);
});
for (let thisVariable in thisObject)