Skip to content

数组去重

js
const uniq = function(a){
    return Array.from(new Set(a))
}