VUE 取数组交集

//produceTypeList-produceType:存在produceTypeList中不存在produceType中
            let diff1 = produceTypeList.filter(function(v){ return produceType.indexOf(v) === -1 }).join(",")

//produceType-produceTypeList:存在produceType中不存在produceTypeList中
            let diff2 = produceType.filter(function(v){ return produceTypeList.indexOf(v) === -1 }).join(",")

 

posted @ 2021-06-30 16:08  哎丫丫呀喂  阅读(337)  评论(0编辑  收藏  举报