how to loop through keys and properties in objects in javascript code example
Example 1: javascript loop object
for (let thisVariable in thisObject)
Example 2: javascript loop through object properties
for (var prop in obj) {
if (Object.prototype.hasOwnProperty.call(obj, prop)) {
// do stuff
}
}