码迷,mamicode.com
首页 > 其他好文 > 详细

Set数据结构

时间:2020-04-29 01:30:59      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:去重   nbsp   set   clear   tle   判断   child   python   wrap   

感觉跟Python里的set集合差不多啊(都可以去重),但是es6里的set实际上是对象,里面有键值对

 

创建

let a = new Set([1, 2, 3])

// 或者

let a = new Set()

 

添加数据

let a = new Set([1, 2, 3])

a.add(4)

console.log(a)

Set(4) [ 1, 2, 3, 4 ]

 

删除数据

let a = new Set([1, 2, 3])

a.delete(1)

console.log(a)

Set [ 2, 3 ]

a.clear()

console.log(a)


Set []

 

修改数据:无法直接把一个数据改成另一个数据,只能通过删和增

 

判断是否存在某元素

let a = new Set([1, 2, 3])

console.log(a.has(4))

false

 

 遍历

let a = new Set()

a.add(‘Allen‘).add(‘Zhang‘)

console.log(a)

// 遍历属性
console.log(a.keys())

// 遍历值
console.log(a.values())

// 遍历元素
console.log(a.entries())

 

也可以用forEach或for...of...遍历

Set数据结构

标签:去重   nbsp   set   clear   tle   判断   child   python   wrap   

原文地址:https://www.cnblogs.com/allenzhang-920/p/12799203.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!