摘要: ES6写法 使用Map function fun(data) { const aMap = new Map(); return data.filter(e => !aMap.has(e) && aMap.set(e, 1)); } console.log(fun([1, 2, 3, 2, 2, 3, 阅读全文
posted @ 2021-01-29 17:50 litiyi 阅读(72) 评论(0) 推荐(0) 编辑