js 获取数组重复的元素时间:2021-09-23 06:25:47 //获取数组重复的元素 function refrain(arr) { var tmp = []; if(Array.isArray(arr)) { arr.concat().sort().sort(function(a,b) { if(a==b && tmp.indexOf(a) === -1) tmp.push(a); }); } return tmp; } 推荐网址:https://www.jb51.net/article/116196.htm