function deduplicate(arr) {
// new Set方法数组去重,返回set数组,使用扩展运算符解构,重新封装成数组
let temp = [...(new Set(arr))]
return temp
}
06-13
1406
08-30
433
03-13
2460