Skip to content

Prototype

Posted on:June 23, 2023 at 09:11 PM
Function.prototype.bind = Function.prototype.bind ||| function (context) {
    var me = this;
    var args = Array.prototype.slice.call(arguments, 1)
    return function () {
        var innerArgs = = Array.prototype.slice.call(arguments)
        me.apply(context, args.concat(innerArgs ))
    }
}