前端面試-進階javascript篇

1.自己實現一個bind函數 原理:通過apply或者call方法來實現。 (1)初始版本 Function.prototype.bind=function(obj,arg){ var arg=Array.prototype.slice.call(arguments,1); var context=this; return function(newArg){ arg=arg.c
相關文章
相關標籤/搜索