2020年7月27日
摘要: 一、闭包的概念和特性 首先看个闭包的例子: function makeFab () { let last = 1, current = 1 return function inner() { [current, last] = [current + last, current] return las 阅读全文
posted @ 2020-07-27 19:20 颉旺飞 阅读(265) 评论(0) 推荐(0) 编辑