let obj = {
a:1,
b:2,
c:3
}
let arr = []
for(let item in obj){
arr.push({
[item]:obj[item]
})
}
console.log(arr)
输出结果为:
let obj = {
a:1,
b:2,
c:3
}
let arr = []
for(let item in obj){
arr.push({
[item]:obj[item]
})
}
console.log(arr)
输出结果为: