//Set 对象允许你存储任何类型的唯一值,无论是原始值或者是对象引用。Set 对象存储的值总是唯一的 let arr = [1,2,3,3,4,] //undefined arr = [...new Set(arr)] //(4) [1, 2, 3, 4]