“Polyfill für Bindung” Code-Antworten

Polyfüllung von Bind

Function.prototype.cbind = function (...outer_args) {
    let that = this,
        params = outer_args.slice(1),
        obj = outer_args[0];

    return function (...inner_args) {
        that.apply(obj, [...params, ...inner_args]);
    }
}
Cautious Capybara

Polyfill für Bindung

Function.prototype.myBind = function (...args) {
  const that = this
  const params = args.slice(1)
  return function (...args2) {
    that.apply(args[0], [...params, ...args2])
  }
}
Badass

Ähnliche Antworten wie “Polyfill für Bindung”

Fragen ähnlich wie “Polyfill für Bindung”

Weitere verwandte Antworten zu “Polyfill für Bindung” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen