4 回答
TA贡献1797条经验 获得超4个赞
const trim = function( str ) {
return trim.replace( /^\s+|\s+$/g, '' );
};
使用箭头函数:
const trim = str => trim.replace( /^\s+|\s+$/g, '' );
2. 在函数内部不需要自己的 this 指针的时候,非常方便,因为箭头函数作用域内没有 this
例如下面不使用箭头函数的代码, 要通过将 this 赋值给 me,调用 me 来调用 Obj:
const Obj = {
text : 'ABC',
replace : function( arr ) {
var me = this;
arr.forEach( function( item ) {
return me.text;
} );
}
};
使用箭头函数:
const Obj = {
text : 'ABC',
replace : function( arr ) {
arr.forEach( item => this.text );
}
};
3. 还有一点是 箭头函数没有 arguments 变量,在某些时候也可以带来方便,和上面差不多。
添加回答
举报