es6
2017-10-09 本文已影响0人
从前慢pearl
1,constructor && super
图片.png 图片.png 图片.png 图片.png2,箭头函数 => 拯救 => setTimeout里面的this
图片.png 图片.png第三种方法箭头函数
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
图片.png