vue.js 怎么将数组中的数组的元素取出形成一个新的数组
发布网友
发布时间:2022-04-21 11:36
我来回答
共1个回答
热心网友
时间:2023-11-10 05:48
function findVal(oneArray){
var tempObj = {};
var tempAry = [];
for(var i=0; i<oneArray.length; i++){
if(tempObj[oneArray[i]]){
tempAry.push(oneArray[i]);
}else{
tempObj[oneArray[i]] = true;
}
}
return tempAry;
}