发布网友 发布时间: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;
}