码迷,mamicode.com
首页 > 编程语言 > 详细

Jsの练习-数组常用方法 -forEach()

时间:2018-06-24 17:02:08      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:dex   哈哈   utf-8   val   html   常用   练习   技术分享   foreach   

forEach()  : 对数组进行遍历循环,对数组中的每一项运行给定函数。

格式: arr.forEach(function(value,index){})

 

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>

<body>
    <script>
        var arr = [1, 3, 5, 7, 9, 11,哈哈];
        arr.forEach(function (value, index) {
            console.log(index + : + value);
        })
    </script>

</body>

</html>

技术分享图片

 

Jsの练习-数组常用方法 -forEach()

标签:dex   哈哈   utf-8   val   html   常用   练习   技术分享   foreach   

原文地址:https://www.cnblogs.com/-Tony/p/9220812.html

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