javascript loop obj keys code example
Example 1: loop through object javascript
for (var property in object) {
if (object.hasOwnProperty(property)) {
// Do things here
}
}
Example 2: object keys javascript
const object1 = {
a: 'somestring',
b: 42,
c: false
};
console.log(Object.keys(object1));
// expected output: Array ["a", "b", "c"]