XuRuiXi
Results
1
issues of
XuRuiXi
``` Function.prototype.myBind = function(context){ if (context === null || context === undefined) { // this参数如果是null/undefined,就指向window,node环境为global try { context = window; } catch(e){ context = global; } } else { context...