더북(TheBook)

1분 퀴즈

14. 다음 코드의 console.log( ) 결과는 무엇일까요?

const hof = (a) => (b) => (c) => {
  return a + (b * c);
};
const first = hof(3);
const second = first(4);
const third = second(5);
console.log(third);

정답 확인

신간 소식 구독하기
뉴스레터에 가입하시고 이메일로 신간 소식을 받아 보세요.