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

作用域链 Scope Chain

时间:2015-01-07 12:22:19      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:

Object.prototype.x = 10;
 
var w = 20;
var y = 30;
 

//console.log(x); // 10
 
(function foo() {
  var w = 40;
  var x = 100;

  with ({z: 50}) {
    console.log(w, x, y , z); // 40, 10, 30, 50
  }

  console.log(this.x, this.w); // 10, 20

  console.log(window.w); // 20
 
})();

  

Object.prototype.x = 10;
 
var w = 20;
var y = 30;
 

//console.log(x); // 10
 
(function foo() {
  var w = 40;
  var x = 100;

  with ({z: 50}) {
    console.log(this.w, this.x, this.y , z); // 20, 10, 30, 50
  }

  console.log(x, w); // 100, 40

  console.log(window.w); // 20
 
})();

  

在搜索__parent__ 之前先搜说 __proto__

技术分享

 

闭包函数

Object.prototype.x = 10;
 
var w = 20;
var y = 30;
 

//console.log(x); // 10
 
(function foo() {
  var w = 40;
  var x = 100;
  
  (function(){
   console.log(w, x, y); //40,100,30
})();

 
})();

 

因为with会在运行期间产生临时的作用域,而闭包函数还是在foo的作用域内。

原文:http://www.nowamagic.net/librarys/veda/detail/1645

作用域链 Scope Chain

标签:

原文地址:http://www.cnblogs.com/lcw5945/p/4207839.html

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