Anbelin

Results 1 comments of Anbelin

```javascript let value = 2; let foo = { value: 1 }; function bar(name, age) { this.habit = 'shopping'; console.log(this.value); console.log(name); console.log(age); } bar.prototype.friend = 'kevin'; let bindFoo = bar.bind(foo,...