//函数声明 function bbb(){ alert(1); } bbb(); //换成函数表达式 (function bbb(){ alert(1); })();**/
函数表达式
原文:http://www.cnblogs.com/yanwen2015/p/4711080.html