马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
小贴士:小心闪电
map是个hash数据结构,查询速度会相当快,而且他与set不同的是可以存储相同的数据let json={
name:'alltolove',
age:37
}
let map=new Map()
map.set('me',json)
document.write(map.get('me').name)
他的键和值可以存储任何类型数据,网页显示为:
let json={
name:'alltolove',
age:37
}
let map=new Map()
map.set('me',json)
map.set(12,[2,'乘以',6])
map.forEach((k,v)=>document.write(v))
也可以遍历,网页显示为:
let json={
name:'alltolove',
age:37
}
let map=new Map()
map.set('me',json)
map.set(12,[2,'乘以',6])
map.delete(12)
map.forEach((k,v)=>document.write(v))
也可以删除一条数据,网页显示:
let json={
name:'alltolove',
age:37
}
let map=new Map()
map.set('me',json)
map.set(12,[2,'乘以',6])
document.write(map.has(12))
也可以用has方法查询,网页上显示:
let json={
name:'alltolove',
age:37
}
let map=new Map()
map.set('me',json)
map.set(12,[2,'乘以',6])
document.write(map.size)
可以查询一共几条数据,显示为:
|