【JavaScript】手写 bind

文章介绍了如何在Function.prototype上自定义myBind方法,使用箭头函数绑定this和参数,解释了为何箭头函数中的this指向其父级作用域,而非全局window。
摘要由CSDN通过智能技术生成
Function.prototype.myBind = function (thisArg, ...args) {
  return (...reArgs) => {
    return this.call(thisArg, ...args, ...reArgs)
  }
}
function func(numA, numB, numC) {
  console.log(this)
  console.log(numA, numB, numC)
  return numA + numB + numC
}
const person = {
  name: 'username'
}
/**
 * 1. 设置 this (目的:调用函数)
 * 2. 函数调用(传参+返回值)
 */
const fun1 = func.myBind(person, 1, 2, 3)  // this 为 {name: 'username'}
const result = fun1()
console.log('res: ', result)

总结:

手写bind方法

  1. function原型上添加myBind函数,参数1为绑定的this,参数2-参数2为绑定的参数
  2. 内部返回一个新箭头函数,目的是绑定作用域中的this
  3. 返回的函数内部,通过call进行this和参数绑定
  4. 通过call的参数2和参数3指定绑定的参数,和调用时传递的参数
Function.prototype.myBind = function (thisArg, ...args) {
  return (...args2) => {
   return this.call(thisArg, ...args, ...args2)
  }
}

问题一:返回值为什么是箭头函数而不是普通函数?
如果是箭头函数,那么this 指向为父类,如果是普通函数,this 指向为全局 window。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

秀秀_heo

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值