Section 0. 함수형 자바스크립트 기본기
평가와 일급
평가
일급
const a = 10; // 변수에 담을 수 있다.
const add10 = a => a + 10; // 함수의 인자로 사용될 수 있다.일급 함수
const f1 = () => () => 1; // 함수의 결과값으로 함수를 리턴할 수 있다.
console.log(f1()); // () => 1
const f2 = f1();
console.log(f2());고차 함수
Last updated