Correcting teacher:PHPz
Correction status:qualified
Teacher's comments:
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)
立即实行函数是在函数后立即传参,传参后就可以执行。