//变量作用域:一个变量的作用域是程序源代码中定义这个变量的区域。全局变量拥有全局作用域,
〃在js代码中任何地方都是有定义的。在函数内声明的变量只在函数体内有定义,它们是局部变量,
//作用域是局部性的。函数参数也是局部变量,它们只在函数体内有定义。
var a = "";
window. b=’ ‘ ";
function(e) {
var c=
d="";
e="";
}
function go () {
console. info(this);//window
return function() {
console. info(this); // window
return {
b: function () {
console. info(this); //b 的父对象
}
}
}
}
go () (). b ();

Was this helpful?

0 / 0

发表回复 0

Your email address will not be published.