/*
* 比较俩数组内容
* */
getInclude1(arr1, arr2) {
let temp = []//重叠内容
for (const item of arr2) {
arr1.find(i => i === item) ? temp.push(item) : ''
}
if(temp.length>0){
return true
}else {
return false
}
},
vue或者js中比较俩数组内容重叠
最新推荐文章于 2024-02-28 10:56:47 发布