letset=newSet([1,4,9]);set.forEach((value,key)=>console.log(key+' : '+value))// 1 : 1// 4 : 4// 9 : 9 1 2 3 4 5 扩展运算符和Set结构相结合实现数组或字符串去重 // 数组letarr=[3,5,2,2,5,5];letunique=[...newSet(arr)];// [3, 5, 2]// 字符串letstr="35225...