can you run a loop within the object ? code example
Example 1: loop through object js
var obj = {
first: "John",
last: "Doe"
};
//
// Visit non-inherited enumerable keys
//
Object.keys(obj).forEach(function(key) {
console.log(key, obj[key]);
});
Example 2: loop key in object
const fruits = { apple: 28, orange: 17 }
for(key in fruits){
console.log(key)
}