Set
是ES6
提供的一种新的数据结构,它跟数组一样用于存储有序的数据,下面web建站小编给大家讲解一下set()
的运用方法。
方法一:
let set = new Set() set.add(1) //Set(1) {1}
方法二:
let set = new Set([1,2,2,1,4,3,5]) console.log(set) //Set(5) {1, 2, 4, 3, 5}
方法三:
let arr = [1,2,2,1,4,3,5] Array.from(new Set(arr)) //(5) [1, 2, 4, 3, 5]
方法四:
let arr = [1,2,2,1,4,3,5] console.log([...new Set(arr)]) //(5) [1, 2, 4, 3, 5]
上面是“es6语法之set()运用方法”的全面内容,想了解更多关于 js 内容,请继续关注web建站教程。
当前网址:https://m.ipkd.cn/webs_2538.html
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!