zoukankan      html  css  js  c++  java
  • js中数字的4种遍历方式

    <!DOCTYPE html>  
    <html>  
    <head>  
        <meta charset="utf-8"/>  
        <title>数组的遍历方式</title>  
        <script type="text/javascript">  
            var arr = [11,22,33,55];  
            //普通的循环遍历方式  
            function first(){  
                      
                for(var i= 0;i<arr.length;i++){  
                    console.log("第一种遍历方式	"+arr[i]);  
                }  
                console.log("111111111111111111111111111111");  
      
      
            }  
            //2、for ..in 遍历方式  
            function second(){  
                // for in 遍历需要两个形参 ,index表示数组的下标(可以自定义),arr表示要遍历的数组  
                for(var index in arr){  
                    console.log("第二种遍历方式	"+arr[index]);  
      
                }  
                console.log("222222222222222222222222222222");  
            }  
      
            //3,很鸡肋的遍历方式  
            function third(){  
                //第一个参数为数组的元素,第二个元素为数组的下标  
                arr.forEach(function(ele,index){  
                    console.log("第三种遍历方式	"+arr[index]+"-----"+ele);  
                });  
                console.log("333333333333333333333333333333");  
      
            }  
            //4,for-of遍历方式  
            function forth(){  
                //第一个变量ele代表数组的元素(可以自定义) arr为数组(数据源)  
                for(var ele of arr){  
                    console.log("第四种遍历方式	"+ele);  
                }  
                console.log("444444444444444444444444444444");  
            }  
        </script>  
    </head>  
    <body>  
        <input type="button" value="第一种遍历方式" name="aa" onclick="first();"/><br/>  
        <input type="button" value="第二种遍历方式" name="aa" onclick="second();"/><br/>  
        <input type="button" value="第三种遍历方式" name="aa" onclick="third();"/><br/>  
        <input type="button" value="第四种遍历方式" name="aa" onclick="forth();"/><br/>  
    </body>  
    </html>  
  • 相关阅读:
    无题
    使用git clone 出现 Permission denied 解决办法
    为什么要用BigDecimal
    FastJson对于JSON格式字符串、JSON对象及JavaBean之间的相互转换
    版本管理规范
    Intellij Idea 常用快捷键
    AI学习资源
    Python图谱
    网站架构演化历程
    微服务系列
  • 原文地址:https://www.cnblogs.com/zhangzonghua/p/9031731.html
Copyright © 2011-2022 走看看