普通函数
function fn1(arg){
return false;
}
以上是es5普通函数 名字fn1 参数arg 返回值false
箭头函数
let fn1 = arg =>false;
es6箭头函数 名字fn1 参数arg 返回值false