概述
箭头函数的语法规则为
等价于
它的作用主要用来简化匿名函数,但是有点差别,在箭头函数中不能使用this
关键字。
本文 github 代码库: https://github.com/huahuayu/nodejs-playground/tree/master/01-arrow-function
示例
以下示例中的squareFun1
和squareFun2
、squareFun3
都是等价的。
this 使用
以下例子getName1
和getName2
等价,但显然getName2
是更优雅的写法。
箭头函数是没有绑定this
的,所以在 getName3
函数中是读不到this.name
的。
代码简化实例
以下代码getFemaleStudents1()
、getFemaleStudents2()
、getFemaleStudents3()
效果一样,但是依次更简洁
最新评论