js文件中function的写法
//Js代码 function foo() { console.log('hello world'); } foo(); //用匿名函数: var foo = function() { console.log('hello world'); } foo(); //改装一下,给调用的foo()加个括号: var foo = function() { console.log('hello world'); } (foo)(); //干脆,连foo的定义也省掉------把foo赋值语句的等号右边的东东、直接替换掉刚才括起来的foo: (function() { console.log('hello world'); })();
标签:function,console,log,js,world,foo,写法,hello From: https://www.cnblogs.com/ZhuMeng-Chao/p/17069862.html