阅读背景:

数组foreach

来源:互联网 

简单使用

代码

<!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>
    
</body>
<script>
    //es5
    var colors=["red","blue","green"];
    for(var i=0;i<colors.length;i++) {
        console.log(colors[i]);
    }
    //es6  color是一个变量 
    //function() {} 这是一个迭代器
    colors.forEach(function(color){
       console.log(color);
    })
</script>
</html>
<!DOCTYPE html>
<html lang="en">



你的当前访问异常,请进行认证后继续阅读剩余内容。

分享到: