码迷,mamicode.com
首页 > 其他好文 > 详细

作用域链、函数执行上下文、全局执行上下文

时间:2018-06-19 13:53:27      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:code   html   作用域链   style   UNC   func   span   def   全局   

function a(){
    function b(){
    function c(){}
    c();
    };
    b();           
}
a();

a defined -->a[[scope]]-->[0]:GO

a doing    -->a[[scope]]-->[0]:aAO

             [1]:GO

b defined -->b[[scope]]-->[0]:aAO

               [1]:GO

b doing   -->d[[scope]]-->[0]: bAO

              [1]:aAO

              [2]:GO

c defined -->c[[scope]]-->[0]:bAO

               [1]:aAO

            [2]:GO

c doing -->c[[scope]]  -->[0]:cAO

           [1]:bAO

           [2]:aAO

           [3]:GO

c over  -->b[[scope]]  -->[0]:bAO

           [1]:aAO

           [2]:GO

b over  -->a[[scope]]  -->[0]:aAO

           [1]:GO

a over  

     




作用域链、函数执行上下文、全局执行上下文

标签:code   html   作用域链   style   UNC   func   span   def   全局   

原文地址:https://www.cnblogs.com/jokes/p/9197997.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!