手写bind方法

Function.prototype.myBind = function () {
    // 函数本体
    const fn = this;
    
    // this指向
    const context = arguments[0]
    // 参数
    const args = Array.prototype.slice.call(arguments, 1)

    // 新函数
    return function newFn() {

        // 新函数参数
        const newArgs = Array.prototype.slice.call(arguments)

        // 当作构造函数使用
        if (this instanceof newFn) {
            return new fn(...args.concat(newArgs))
        }

        // 单座普通函数使用
        return fn.apply(context, args.concat(newArgs))
    }
}

你可能感兴趣的:(手写bind方法)