摘要: 方法一:使用new Set()的方法 const arr= Array.from(new Set([1,2,3,4,2,1])) // [1,2,3,4] 方法二:使用filter的方法 const arrFilter= [1,2,4,2,1] .filter(function onlyUnique 阅读全文
posted @ 2021-07-05 11:19 芥末Yuki 阅读(41) 评论(0) 推荐(0) 编辑