Javascript add extra argument

后端 未结 11 1033
暖寄归人
暖寄归人 2021-02-06 22:02

Lets take a look at this code:

var mainFunction = function() {
  altFunction.apply(null, arguments);
}

The arguments that are passed to \"mainF

11条回答
  •  太阳男子
    2021-02-06 22:10

    var myABC = '12321'; someFunction(result, error, myCallback.bind(this, myABC));

    Reference: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/bind

提交回复
热议问题