foreach用法
Posted 大一脚步
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了foreach用法相关的知识,希望对你有一定的参考价值。
//array.forEach(function(currentValue,index,arr),thisValue);
//currentValue,必需,当前元素
//index 可选,当前元素的索引值
//arr 可选,当前元素所属的数组对象
//thisValue 可选,传递给函数的值一般用this值,如果参数为空,undefined会传递给this var num = [1,3,5,7]; var sum = 0; function myFunction(item,index){ sum+=item; } num.foreach(myFunction);
以上是关于foreach用法的主要内容,如果未能解决你的问题,请参考以下文章