forEach() propertys js code example
Example 1: loop through object javascript
for (var property in object) {
if (object.hasOwnProperty(property)) {
// Do things here
}
}
Example 2: javascript loop through object
for (var property in object) {
if (object.hasOwnProperty(property)) {
// Do things here
}
}