标签:数组 nbsp 运行 函数表达式 接收 strong 报错 括号 局部变量
第一种定义方式:可在后面定义前面调用.
function gg(){ console.log("函数内部的代码"); }
第二种定义方式:必须先定义后面执行
// b();//报错 -- let定义的函数不可以提前调用 let b = function(){ console.log("这是函数b"); }; //只能在定义之后调用 b();
通常我们需要定义函数之后,再才能用 函数名() 的形式自执行,函数表达式可以直接在后面加小括号自执行执行。
(function(){ console.log("函数内部代码"); })(); //其他的函数表达式写法 (function(){ console.log("函数表达式自执行2"); }()); +function(){ console.log("函数表达式自执行3"); }(); -function(){ console.log("函数表达式自执行4"); }(); ~function(){ console.log("函数表达式自执行5"); }(); !function(){ console.log("函数表达式自执行6"); }(); //轮播图 (function(){ })(); //选项卡 (function(){ })(); //侧边栏 (function(){ })();
//有名函数 function gg(){ console.log("函数内部的代码"); }*/ //函数自执行 gg(); //匿名函数 //充当事件函数 document.onclick = gg; //充当事件函数的时候,可以用函数名字,也可以直接写一个匿名函数 document.onclick = function (){ console.log("这是一个匿名函数"); };
let a = 10; function x(){ let a = 20; function y(){ console.log(a); } y(); } x(); console.log(a);
//功能函数:求和 function sum( a,b ){ //形参 console.log(a,b,a + b); } sum( 3 , 4 );//实参 sum( 3 , 5 );//实参 sum( 3 , 10 );//实参 //实参多 -- 没有对应的形参来接收多的,但是正常运行不会出错 sum( 5 , 6 , 7 ); //实参少 -- 没有对应数据的形参就是默认值undefined sum( 2 );
标签:数组 nbsp 运行 函数表达式 接收 strong 报错 括号 局部变量
原文地址:https://www.cnblogs.com/yhy-blog/p/14242720.html