1、myForEach
//myForeach 數組每一個元素都執行一次回調函數
Array.prototype.myForEach = function(callback){
for(var i = 0 ; i < this.length ; i++){
var element = this[i];
callback(element,i,this);
}
}
2、myEvery
//myEvery 檢測數值元素的每一個元素是否都符合條件
Array.prototype.myEvery = function(callback){
for(var i = 0 ; i < this.length ; i++){
var item = this[i];
if(!callback(item,i,this)){
return false;
}
}
return true;
}
3、mySome
//mySome 檢測數組元素中是否有元素符合指定條件
Array.prototype.mySome = function(callback){
for(var i = 0 ; i < this.length ; i++){
var item = this[i];
if(callback(item,i,this)){
return true;
}
}
return false;
}
4、myFilter
//myFilter 檢測數值元素,並返回符合條件全部元素的數組
Array.prototype.myFilter = function(callback){
for(var i = 0 ; i < this.length ; i++){
var item = this[i];
if(callback(item,i,this)){
arr[temp] = item;
temp++;
}
}
return arr;
}
5、myReduce
//myReduce 將數組元素計算爲一個值(從左到右)
Array.prototype.myReduce = function(callback,initialValue){
var num = 0;
if (initialValue != undefined) {
total = initialValue;
}else{
total = this[0];
num = 1;
}
for(i = num ; i < this.length ; i++){
var item = this[i];
total = callback(total,item,i,this);
}
return total;
}
以上回調函數只是手寫簡化版,沒法傳this參數,如有誤(或建議),請指正。 ^_^