js 手写call方法

1.手写call方法

 Function.prototype.call4=function(thisArg){
   
      //先判断是不是空的,是的话指向window,不是的话采用Object方法,将thisArg传进去      
     thisArg= thisArg==null?Window:Object(thisArg)

你可能感兴趣的:(JS基础,javascript,开发语言,ecmascript)