js object loop through values code example
Example 1: javascript loop object
for (let thisVariable in thisObject)
Example 2: javascript looping through object
const fruits = {
apple: 28,
orange: 17,
pear: 54,
}
const entries = Object.entries(fruits)
console.log(entries)
// [
// [apple, 28],
// [orange, 17],
// [pear, 54]
// ]