1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
class Human { constructor() { this.name = '太郎'; } greet() { console.log(`こんにちは。私は${this.name}です`); } } const h = new Human(); const greet = h.greet.bind(h); greet(); h.name = 'john'; greet(); |
1 2 |
こんにちは。私は太郎です こんにちは。私はjohnです |