将数组的所有值添加到 Set
中的传统方法是:
// for the sake of this example imagine this set was created somewhere else
// and I cannot construct a new one out of an array
let mySet = new Set()
for(let item of array) {
mySet.add(item)
}
有没有更优雅的方式来做这个? 也许是 mySet.add(array)
或 mySet.add(...array)
?
附言: 我知道两者都不起作用