2023.12.21今天我学习了如何通过new Set()方法进行过滤重复的数据。
let demo = ['张三','张三','李四','王五'] let new_demo = [...new Set(demo)]//set是过滤重复的方法