箭头函数与普通函数的区别
普通函数与箭头函数的区别
1、不邦定this
在箭头函数出现之前,每个新定义的函数都有其自己的 this 值
var myObject = {
value:1,
getValue:function(){
console.log(this.value)
},
double:function(){
return function(){
console.log(this.value = this.value * 2);
}
}
}
myObject.do
原创
2021-04-30 14:43:17 ·
121 阅读 ·
0 评论