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
| class MyClass { me: Person;
constructor(person: Person) { this.me = person; }
someFunction() { [1, 2, 3].forEach(function (value) { console.log(value, this); }); }
someFunctionBindThis() { [1, 2, 3, 4].forEach(function (this: MyClass, value) { console.log(value, this); }, this); }
someFunctionWithArrow() { [1, 2, 3].forEach((value) => { console.log(value, this); }); } }
const myclass = new MyClass(me); myclass.someFunction();
myclass.someFunctionBindThis();
myclass.someFunctionWithArrow();
|