function way of loop through object javascript code example
Example 1: javascript loop through object
for (var property in object) {
if (object.hasOwnProperty(property)) {
// Do things here
}
}
Example 2: javascript loop object
for (let thisVariable in thisObject)