原创 call&apply&bind的js實現以及應用

js實現call // example let obj = { a: 124, b: 'ccc' }; function fn(c) { return this.a + this.b + this.c; } // 使