1.闭包:(作用域(函数创建),上下文环境(函数执行,会销毁))
https://www.cnblogs.com/5201314m/p/10277460.html
2.回调函数:
https://www.cnblogs.com/5201314m/p/12975065.html
3. 匿名函数:(没有函数名的函数,function(){} )
https://www.cnblogs.com/5201314m/p/10282894.html
4.自执行函数:(立即调用的匿名函数,(function(){})() )
5.原型链:(继承的思想 )
https://www.cnblogs.com/5201314m/p/10287950.html
https://www.cnblogs.com/5201314m/p/10333385.html
6.this关键字:(全局window 作为对象的方法被调用 作为构造函数调用 apply(),call() )
https://www.cnblogs.com/5201314m/p/10298944.html
7.发布-订阅模式:
8.深克隆、浅克隆:
9.promise、async/await:
10.proxy代理:
11.函数防抖及函数节流:
12.浏览器兼容问题:
13.事件委托:
14.服务端渲染(ssr):