Dev./javascript

[JS] Function.prototype.bind()

인쥭 2022. 5. 27. 02:07
반응형
  • 함수에 대해 호출된 bind()는 인자로 this를 전달한다.
function temp () {
    return this.x;
}

console.log(temp());
console.log(
    temp.bind({ x: 42 })()
);

/* 실행 결과
undefined
42
*/
  • bind() 의 두 번째 인자부터는 binding 대상 함수의 인수로 전달된다.
function temp (prop) {
    return this[prop];
}

console.log(temp('x'));
console.log(
    temp.bind({ x: 42 }, 'x')()
);

/* 실행 결과
undefined
42
*/