js数组去重的方法

js数组去重的方法

第一种 ES6 中new set 第二种 利用indexof 第三种 利用对象的key值唯一的特性 第四种 利用includes() 第五种 利用hasOwnProperty,返回的keys为字符串的形式 第六种 利用s
JavaScript930