//->自己在內置類的原型上擴展一個myForEach來處理forEach不兼容的問題
//callBack:回調函數,遍歷數組中的一項,就要執行一次callBack
//context:改變callBack方法中的this指向
Array.prototype.myForEach = function myForEach(callBack, context) {
typeof context === "undefined" ? context = window : null;
if ("forEach" in Array.prototype) {
this.forEach(callBack, context);
return;
}
//->不兼容處理
for (var i = 0; i < this.length; i++) {
typeof callBack === "function" ? callBack.call(context, this[i], i, this) : null;
}
};