摘要: 数组去重的五种方式 <script> // 1 indexOf() 数组中查找元素的第一个索引,有返回值,没有返回 -1 let arr = [1, 2, 3, 4, 3, 2, 4, 6, 8, 6]; let newArr = []; function deduplication(array) 阅读全文
posted @ 2020-08-23 11:01 AchengL 阅读(202) 评论(0) 推荐(0)