Front-end-learning-to-organize-notes icon indicating copy to clipboard operation
Front-end-learning-to-organize-notes copied to clipboard

闭包,应用

Open Chocolate1999 opened this issue 4 years ago • 1 comments

Chocolate1999 avatar Jan 21 '21 09:01 Chocolate1999

在技术中内部函数总是可以访问其外部函数中声明的变量,当一个外部函数返回一个内部函数后,即使该外部函数已经执行结束了,但是内部函数引用外部函数的变量依然保存在内存中,我们就把这些变量的集合称为闭包。 应用:1. 采用函数引用方式的setTimeout调用2. 小范围代替全局变量3. 访问私有变量的特权方法

HearLing avatar Jan 22 '21 12:01 HearLing