自调用(Self-calling)函数

来源:互联网 发布:如何下载解压软件 编辑:程序博客网 时间:2024/05/20 16:09
  1. 通常被称为自调用匿名函数或即刻调用函数表达式(LLFE)。当函数被创建的时候就会自动执行,如下:
  2. (function(){
  3. // some private code that will be executed automatically
  4. })();
  5. (function(a,b){
  6. var result = a+b;
  7. return result;
  8. })(10,20)
0 0
原创粉丝点击