美文网首页
js作用域

js作用域

作者: 无言无意 | 来源:发表于2019-04-25 09:24 被阅读0次
    var scope = "global scope";
    function checkscope(){
        var scope = "local scope";
        function f(){
            return scope;
        }
        return f();
    }
    checkscope();
    var scope = "global scope";
    function checkscope(){
        var scope = "local scope";
        function f(){
            return scope;
        }
        return f;
    }
    checkscope()();
    //打印两段local scope
    

    词法作用域

    -js采用的是词法作用域,函数的作用域基于函数创建的位置。

    相关文章

      网友评论

          本文标题:js作用域

          本文链接:https://www.haomeiwen.com/subject/xstagqtx.html