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