<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>1.數組原型上實現一個數組去重的方法</title>
</head>
<body>
<script>
Array.prototype.myDistinct=function () {
var newAry=[];
for(var i=0;i<this.length;i++){
if(newAry.indexOf(this[i])==-1){
newAry.push(this[i])
}
}
return newAry
};
var ary=[1,2,1,2,3,3,1,4,4];
console.log(ary.myDistinct());
</script>
</body>
</html>
複製代碼