摘要: 题处理 let x = 5; function fn(x) { return function (y) { console.log(y+(++x)) } } let f = fn(6) f(7); fn(8)(9); fn(10) 答案是:14、18、18 函数执行,产生一个私有上下文,然后进栈, 阅读全文