【JS】数组对象去重

const arrUnique = (arr, key) => {
    let ojb = {};
    return arr.reduce((pre, item) => {
        ojb[item[key]] ? '' : ojb[item[key]] = true && pre.push(item);
        return pre;
    }, []);
};
posted @ 2021-04-15 16:46  My灬Best丶Angel  阅读(35)  评论(0编辑  收藏  举报