# 函数

闭包

立即执行函数

链式调用

this

apply, call, bind

匿名立即执行函数表达式

(function() {
  var tmp = '';
  console.log(tmp)
}())
1
2
3
4