js 数组去重
const quchong = (arr) => {
return [...new Set(arr)]
}
const quchong = (arr) => {
const res = []
arr.reduce((pre, next) => {
if (!pre.has(next)) {
pre.set(next, 1)
res.push(next)
}
return pre
}, new Map())
return res
}
js 数组去重最先出现在Python成神之路。
共有 0 条评论