1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
| function(i){ return i + 1; } (i) => i + 1
function(x, y) { x++; y--; return x + y; } (x, y) => {x++; y--; return x+y}
class Animal { constructor(){ this.type = 'animal' } says(say){ setTimeout(function(){ console.log(this.type + ' says ' + say) }, 1000) } }
var animal = new Animal() animal.says('hi')
says(say){ var self = this; setTimeout(function(){ console.log(self.type + ' says ' + say) }, 1000)
says(say){ setTimeout(function(){ console.log(self.type + ' says ' + say) }.bind(this), 1000)
class Animal { constructor(){ this.type = 'animal' } says(say){ setTimeout( () => { console.log(this.type + ' says ' + say) }, 1000) } } var animal = new Animal() animal.says('hi')
|