js对数组去重方法

可以使用下面的方法进行js数组去重:

function unique (arr) {
    return Array.from(new Set(arr))
}

你可能感兴趣的:(js)