首页 > 代码库 > javascript 基础系列(一)
javascript 基础系列(一)
闭包:
function 内部访问外部的variables
function f(){ alert(ysr);}
报错了。
Certain language constructs block the error, for example typeof x
works if there is no x
(and returnsundefined
), but that’s an exception.
特定的语言结构是可以阻塞(拦截)这种错误的,(不让这种错误弹出来!!)。 比如 : typeof ysr, 先用这种语言结构检测一下,就不会报错了!!
If a variable is set, but not found anywhere, then it is created in the outmost LexicalEnvironment
, which iswindow
.
function f() { x = 5 // writing x puts it into window}
javascript 基础系列(一)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。