标签:ons comment 方法 get sub 数组 attr href string
Object构造函数的方法 之Object.entries()
const obj = {
A:‘hy‘,
B:12
};
console.log(Object.entries(obj)) // [[‘A’,‘hy‘],[‘B‘,12]]
for(let [key, value] of Object.entries(obj)){
console.log(`${key}:${value}`) // A:hy B:12
}
将Object转换为Map
const obj = {
A:‘hy‘,
B:12
};
const map = new Map(Object.entries(obj))
console.log(map) // Map { A:’hy’ , B:12 }
来源:迅闻网
Object构造函数的方法 之Object.entries()
标签:ons comment 方法 get sub 数组 attr href string
原文地址:https://www.cnblogs.com/1994july/p/12939673.html