标签: javascript this apply bind
无法弄清楚为什么bind在对象方法中不能与IIFE一起使用?我错过了什么?
bind
IIFE
谢谢。
示例:
var a = { b: () => console.log('Hello'), c: (() => this.b()).bind(a)() } a.b() a.c
// Error: Uncaught TypeError: this.b is not a function