数组 forEach方法
Posted afanadmin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数组 forEach方法相关的知识,希望对你有一定的参考价值。
arr.forEach();
let arr = [1,2,3,4]; arr.forEach(function(a,b){ // 第一个参数就是 数组的列表 console.log(a);//1,2,3,4 // 第二个参数是 下标 console.log(b);//0,1,2,3 }); let arr1 = [1,2,3,4,5]; let num = 0; arr1.forEach(function(a,b,){ num += a; }); console.log(num);//15;
以上是关于数组 forEach方法的主要内容,如果未能解决你的问题,请参考以下文章
PHP 数组遍历方法大全(foreach,list,each)