摘要:
题处理 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 函数执行,产生一个私有上下文,然后进栈, 阅读全文
posted @ 2021-01-18 20:56
zhx119
阅读(108)
评论(0)
推荐(0)
2021年1月18日