AndyLZC

Results 1 comments of AndyLZC

> > call2,apply2和bind2的实现,我觉得可以再优化一下。 > > 就以call2为例了,这里: > > ```js > > Function.prototype.call2 = function (context) { > > context = context || window; > > context.fn = this; > >...