{
"8045dc60-e1d0-11e9-836c-d7186442830a": { //object },
// more...
}
obj = {'asdf': 120, 'asdfsdf': 34, 'favcac': 5, 'sdfcy4': 623}
for(const [key, val] of Object.entries(obj)) {
console.log(key, val)
}
obj = {'asdf': 120, 'asdfsdf': 34, 'favcac': 5, 'sdfcy4': 623}
obj[Symbol.iterator] = function* () {
const values = Object.values(obj)
let count = 0
while(count < values.length) {
yield values[count]
count++
}
}
for(val of obj) console.log(val)