码迷,mamicode.com
首页 > Web开发 > 详细

js思考 ES5之 forEach

时间:2017-11-25 14:26:39      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:his   索引   print   思考   each   log   函数   传递   ons   

array.forEach(function(currentValue, index, arr){}, thisValue)

  array要操作的数组或对象
  currentValue 必需。当前元素(相当于for循环i)
  index     可选。当前元素的索引值(相当于for循环index) 
  arr      可选。当前元素所属的数组对象(相当于for循环arr),不填默认为 array
  thisValue 可选。传递给函数的值一般默认用 "this" 值

demo:

  var array=[1,2,3,4,5];
  array.forEach(function(i,index){console.log(i)})
  // 1 2 3 4 5


tip:

  forEach不能写成foreach
 



 

js思考 ES5之 forEach

标签:his   索引   print   思考   each   log   函数   传递   ons   

原文地址:http://www.cnblogs.com/wulinwulin/p/7895072.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!