js loop through fields in object code example
Example 1: javascript loop object
for (let thisVariable in thisObject)
Example 2: javascript iterate through object attributes
for (var prop in obj) {
if (Object.prototype.hasOwnProperty.call(obj, prop)) {
// do stuff
}
}