Function.prototype._call=function(){
    const self=this//self为调用_call的函数

    const args=[...arguments]//参数

    const thisValue=args.shift()//取第一个参数,即为this

    thisValue.fn=self//在this上先挂上一个函数

    const res=thisValue.fn(...args)//调用函数

    delete thisValue.fn//删掉

    return res
  
}