预解析 、变量提升

     <script>

          f1();      //f1 is no defind;

        var f1=function(){  //自定义函数

        console.log(a); //  不能够输出

        var a=10;

        }

//  解析  因为 var f1 会变量提升

        var f1;

          f1();      //f1 is no defind;  此时f1就不能调用

         f1=function(){  //自定义函数

        console.log(a); //  a也自然不能输出

        var a=10;

        }

        

上一篇:python from *** import *** 互转 __import__


下一篇:力扣:83. 删除排序链表中的重复元素