摘要: 一、Set集合 一种新的数据结构 , 类似于数组。但成员是唯一的无序,没有重复的值 let arr = [1, 3,4, 2, 2, 1, 1] let set=new Set(arr)// Set(4) {1, 3, 4, 2} 1.1.基本操作 遍历操作 let s1 = new Set([1, 阅读全文
posted @ 2021-09-14 22:56 黄哈哈。 阅读(38) 评论(0) 推荐(0) 编辑