function iterate(obj) {
const ary = []
Object.keys(obj).forEach(item => {
ary.push(`${item}: ${obj[item]}`)
})
return ary
}
function iterate(obj) {
const ary = []
Object.keys(obj).forEach(item => {
ary.push(`${item}: ${obj[item]}`)
})
return ary
}