• 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>  
  • 相关阅读:
    Synplify9.6.2破解(转帖)
    让博客园博客自动生成章节目录索引
    如何学好FPGA
    verilog 不可综合语句
    在FPGA中使用for循环一定浪费资源吗?
    在verilog中调用VHDL模块
    C#和Java中执行SQL文件脚本的代码(非常有用)
    C#通用JSON帮助类
    公共的Json操作C#类
    Calendar.NET
  • 原文地址:https://www.cnblogs.com/zhangzonghua/p/9031731.html
Copyright © 2020-2023  润新知