函数的四种形式
函数类型命名函数
function name (){console.log(‘hello,world’)}
其中的“name”为函数名称,()内为外部可传入的参数 {}内为函数代码。
命名函数不受上下问约束。
const name = function(){console.log(‘hello,world’)}
和命名函数基本相同。但是受到上下文约束
箭头函数let name=()=>console.log(‘hello,world)
匿名函数的简化。只有一个参数时可省略()
但有多个或没有参数的时候必须加上()
(let name=(a,b)=>
${a}+${b}=
(a+b))(2.3)
立即实行函数是在函数后立即传参,传参后就可以执行。
【本文转自:美国服务器 http://www.558idc.com/mg.html欢迎留下您的宝贵建议】