前言

....

正文

....

数组去重

let arr = [1,1,2,2,3,4,5,6]
arr=[...new Set(arr)]
console.log(arr) // [1, 2, 3, 4, 5, 6]
博客中所涉及到的图片都有版权,请谨慎使用