작성한 질문수
자바스크립트로 알아보는 함수형 프로그래밍 (ES5)
거르기 - reject, compact
작성
·
369
0
compact 함수를 선언하면 TypeError: _compact is not a function라고 나오는데 이유를 알 수 있으ㅡㄹ까요?
const compact = filter(_identity)
console.log(
_compact([1, 2, 0, false, null, {}]));
// 2. compact
답변 1
작성주신 코드를 보면 compact 라고 선언하신 다음 _compact 라고 실행하고 계십니다.