开发者学堂课程【微服务+全栈在线教育实战项目演练(SpringCloud Alibaba+SpringBoot):前端技术-es6 语法-箭头函数】学习笔记,与课程紧密联系,让用户快速学习知识。
课程地址:https://developer.aliyun.com/learning/course/667/detail/11303
前端技术-es6 语法-箭头函数
箭头函数
头函数
箭头函数提供了一种更加简洁的函数书写方式.基本语法是:参数→函数体
<script>
//
传统方式创建方法
var f1
=
function(
m
)
{
return
m
}
console.
lo
g(f1(
2
)
)
执行:
2
8
//使用箭头函数改造
var
f2
= m → m
console.
l
og(f2(
8
))
//
复杂一点方法
var f3 = function(a,b) {
return a+b
}
console.log(f3(1,2))
执行: 3
//
箭头函数简化
var f4 = (a,b) → a+b
console.log(f4(2,2))
执行: 4
</script>