js数组forEach实例⽤法详解
1、forEach()类似于map(),它还将每个元素依次作⽤于传⼊函数,但不会返回新的数组。
2、forEach()常⽤于遍历数组,⽤于调⽤数组的每⼀个元素,并将其传递给回调函数。传输函数不需要返回值。
实例
var arr=[7,4,6,51,1];
try{arr.forEach((item,index)=>{
if (item<5) {
throw new Error("myerr")//创建⼀个新的error message为myerr
}
console.log(item)//只打印7 说明跳出了循环
})}catch(e){
console.ssage);
if (e.message!=="myerr") {//如果不是咱们定义的错误扔掉就好啦
throw e
}
}
知识点扩展:
⼿写 forEach
forEach()⽅法对数组的每个元素执⾏⼀次提供的函数
arr.forEach(callback(currentValue [, index [, array]])[, thisArg]);
callback
currentValue
数组中正在处理的当前元素。
index 可选
数组中正在处理的当前元素的索引。js arguments
array 可选
forEach() ⽅法正在操作的数组。
thisArg 可选
可选参数。当执⾏回调函数 callback 时,⽤作 this 的值。
没有返回值
如果提供了⼀个 thisArg 参数给forEach函数,则参数将会作为回调函数中的this值。否则this值为 undefined。回调函数中this 的绑定是根据函数被调⽤时通⽤的this绑定规则来决定的。
let arr = [1, 2, 3, 4];
arr.forEach((...item) => console.log(item));
// [1, 0, Array(4)] 当前值
function Counter() {
this.sum = 0;
}
// 因为 thisArg 参数(this)传给了 forEach(),每次调⽤时,它都被传给 callback 函数,作为它的 this 值。
Counter.prototype.add = function(array) {
array.forEach(function(entry) {
this.sum += entry;
++unt;
}, this);
// ^---- Note
};
const obj = new Counter();
obj.add([2, 5, 9]);
// 3 === (1 + 1 + 1)
obj.sum;
// 16 === (2 + 5 + 9)
每个数组都有这个⽅法
回调参数为:每⼀项、索引、原数组
Array.prototype.forEach = function(fn, thisArg) {
var _this;
if (typeof fn !== "function") {
throw "参数必须为函数";
}
if (arguments.length > 1) {
_this = thisArg;
}
if (!Array.isArray(arr)) {
throw "只能对数组使⽤forEach⽅法";
}
for (let index = 0; index < arr.length; index++) {
fn.call(_this, arr[index], index, arr);
}
};
到此这篇关于js数组forEach实例⽤法详解的⽂章就介绍到这了,更多相关js数组forEach⽅法的使⽤内容请搜索以前的⽂章或继续浏览下⾯的相关⽂章希望⼤家以后多多⽀持!

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。