분류 javascript

closure를 사용하여 저장된 인수로 저장된 키를 호출

컨텐츠 정보

  • 조회 497 (작성일 )

본문

const call = (key, ...args) => context => context[key](...args);
i.e.
Promise.resolve([1, 2, 3])
  .then(call('map', x => 2 * x))
  .then(console.log); //[ 2, 4, 6 ]
const map = call.bind(null, 'map');
Promise.resolve([1, 2, 3])
  .then(map(x => 2 * x))
  .then(console.log); //[ 2, 4, 6 ]