[ Web Proxy ]
URL:
Viewing: https://ko.javascript.info/task/second-bind [Back]  [Original]

bind
:
Light themeDark theme
DanskEnglishEspaolFranaisIndonesiaItalianoTrkeOzbek

bind

: 5

bind , bind this ?

?

function f() {
  alert(this.name);
}

f = f.bind( {name: "John"} ).bind( {name: "Ann" } );

f();

: John

function f() {
  alert(this.name);
}

f = f.bind( {name: "John"} ).bind( {name: "Pete"} );

f(); // John

f.bind(...) (bound function) . .

bind bind .


Web Proxy Viewer  |  New URL  |  Original Page