VUE 取数组交集

时间:2021-06-30 18:45:31   收藏:0   阅读:0
//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(",")

 

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!