forEach()方法详解

作者: sky丶星如雨 | 来源:发表于2017-09-21 09:54 被阅读32次

    js中Array对象提供了一种遍历数组的方法,forEach()。
    个人觉得还是很好用的,下面给大家做个详细的介绍。

    forEach() 方法用于调用数组的每个元素,并将元素传递给回调函数。

    语法格式为:

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

    currentValue: 表示当前元素,个人习惯用item来表示。
    index: 当前元素索引号。
    arr: 当前元素所属的数组对象。

    举例说明:

     var arr = [123, 232, 31, 313, 3, 13]; // 乱打的
        arr.forEach(function (item, index,arr) {
            console.log(item);
            console.log(index);
            console.log(arr);
        })
    
    控制台打印.png

    通过控制台打印的数据,可以很直观的理解此方法。

    喜欢的朋友请点个赞,谢谢!

    相关文章

      网友评论

        本文标题:forEach()方法详解

        本文链接:https://www.haomeiwen.com/subject/wpqzsxtx.html