首页 > 编程语言 > 详细

JavaScript的Function Scope and Lexical Scope

时间:2015-05-17 18:21:11      阅读:141      评论:0      收藏:0      [点我收藏+]

原贴地址:http://pierrespring.com/2010/05/11/function-scope-and-lexical-scoping/

个人觉得写得不错,简单地搬运,如有错误,请指正。

 

Wikipedia defines Scope as follows:

  Tipically, scope is used to define the extent of information hiding--that is, the visibility or accessibility of

  variables from diefferent parts of the program.

  作用域是用来定义信息隐藏的深度--程序中,其它地方对某个部分中的变量的可访问性。

In JavaScript we have Function Scope and Lexical Scope.

Function Scope means that any variable which is defined within a function is visible within that entire function.

This is quite different form Block Scope, in which a variable scope is limited by the block a variable is declared in.

Function Scope 是指,任何在函数内部定义的变量是对整个函数都可见的。

 

JavaScript的Function Scope and Lexical Scope

原文:http://www.cnblogs.com/Yaxian/p/4510030.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!