匿名函数

94 阅读1分钟

(function (win){})(window);

  1. 匿名函数传参
(function (m,n) { return m+n; })(10,20)//直接使用

2、自执行函数