ES6 箭头函数
Posted webmc
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ES6 箭头函数相关的知识,希望对你有一定的参考价值。
1.缩减代码
function double(number){ return number*2; } console.log(double(20)) const double2 = number => number*2; console.log(double2(15))
2.改变this指向 (this 始终指向调用它的对象 ES6中箭头函数的this指向函数上边的对象)
let team = { tName:"man", people:[‘jack‘,‘jerry‘], order:function(){ return this.people.map(people => { return `${people}隶属于${this.tName}小组`; }); } } console.log(team.order()); //["jack隶属于man小组", "jerry隶属于man小组"]
以上是关于ES6 箭头函数的主要内容,如果未能解决你的问题,请参考以下文章