欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2022-03-18 15:41:09
forEach() : 对数组进行遍历循环,对数组中的每一项运行给定函数。 格式: arr.forEach(function(value,index){}) ......

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()