Blogger Information
Blog 35
fans 0
comment 0
visits 25257
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
javascript声明与定义变量2019年5月5日22时05分
白守的博客
Original
637 people have browsed it
  1. 如何正确的声明与定义变量?


    实例

        <script>
            // 这个是一个声明i是一个变量
            var i;
            //定义i是字符串是1 
            i = 1;
            
            </script>

    运行实例 »

    点击 "运行实例" 按钮查看在线实例

  2.  变量的提升是原理,如何实现的?

     

    实例

        <script>
            // 可以先变量,再设置声明,没有影响
            w = 1;
    
            var w;
            // 另一种
    
            // 也可以先声明,再变量,没有影响,上面和下面的案例效果一样
            var q;
    
            q = 2;
            
            
            </script>

    运行实例 »

    点击 "运行实例" 按钮查看在线实例

  3. 分支结构有几种, 多分支与switch的实现过程

  4. 实例

        <script>
         分支结构有三种
        //  1.双分支
    
         var a =  10;
         if(a <= 10 ){
            console.log('你真厉害');
         }else{
             console.log('还可以');
         };
    
    
        //  2.多分支
        var s = 20;
        if( s >= 20 && s < 20 ){
            console.log('真厉害');
        }else if( s <= 20 && s < 20){
            console.log('一般般');
        }//可以继续增加
    
        // 3.switch
        var r =100;
        switch(true){
            case r >= 60 && r < 80:
            res = '1';
            break;
        case r >= 80 && r < 90:
            res = '2';
            break;
        case r >= 90 && r <= 100:
            res = '3';
            break;
        default:
            res = '4';
        }
    
            
            
            </script>

    运行实例 »

    点击 "运行实例" 按钮查看在线实例

Correction status:Uncorrected

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments