js 根据chatId 删除数组重复元素

let msgLists = that.msgList.concat(msgObj);


        that.msgList = msgLists.reduce(function (tempArr, item) {

          if (tempArr.findIndex((ele) => ele.chatId === item.chatId) === -1) {

            tempArr.push(item)

          }

          return tempArr

        }, [])

你可能感兴趣的:(js 根据chatId 删除数组重复元素)