箭头函数恢复

Posted hk121929

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了箭头函数恢复相关的知识,希望对你有一定的参考价值。

class Animal {
constructor(){
this.type = ‘animal‘
}
says(say){
setTimeout( () => {
console.log(this.type + ‘ says ‘ + say)
}, 1000)
}
}
var animal = new Animal()
animal.says(‘hi‘) //animal says hi
















以上是关于箭头函数恢复的主要内容,如果未能解决你的问题,请参考以下文章

箭头函数(Arrow Function)

面试题系列---箭头函数和普通函数的区别?箭头函数的优缺点?

箭头函数

怎么理解这个箭头函数里的this指向

箭头函数和 this指向

箭头函数的特点