var a = 1;
function b() {
var a = 2;
function c() {
console.log(a);
}
return c;
b()();
请问大神们,怎么理解b()()这句话,执行函数不是只要一个括号就可以?
b()()
holdtom
相关分类